[llvm-commits] [llvm] r122267 - /llvm/trunk/include/llvm/Support/PathV1.h
Bill Wendling
isanbard at gmail.com
Mon Dec 20 13:14:19 PST 2010
Author: void
Date: Mon Dec 20 15:14:18 2010
New Revision: 122267
URL: http://llvm.org/viewvc/llvm-project?rev=122267&view=rev
Log:
This is still used and issuing an annoying warning. Don't deprecate something in
the library unless *all* uses have been converted over to the new form.
Modified:
llvm/trunk/include/llvm/Support/PathV1.h
Modified: llvm/trunk/include/llvm/Support/PathV1.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/PathV1.h?rev=122267&r1=122266&r2=122267&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/PathV1.h (original)
+++ llvm/trunk/include/llvm/Support/PathV1.h Mon Dec 20 15:14:18 2010
@@ -311,9 +311,9 @@
/// This function determines if the path name is absolute, as opposed to
/// relative.
/// @brief Determine if the path is absolute.
- LLVM_ATTRIBUTE_DEPRECATED(
- bool isAbsolute() const,
- LLVMV_PATH_DEPRECATED_MSG(path::is_absolute));
+//FIXME: LLVM_ATTRIBUTE_DEPRECATED(
+ bool isAbsolute() const;
+//FIXME: LLVMV_PATH_DEPRECATED_MSG(path::is_absolute));
/// This function determines if the path name is absolute, as opposed to
/// relative.
More information about the llvm-commits
mailing list