diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-12-20 21:14:18 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-12-20 21:14:18 +0000 |
commit | b0602a6b0ff9b3363cf3aa04277154df1b91f83b (patch) | |
tree | 0954da79fc1ad4536010245390b72c5944de2e53 | |
parent | a6846833ea254385d6432f78786db92480097925 (diff) | |
download | bcm5719-llvm-b0602a6b0ff9b3363cf3aa04277154df1b91f83b.tar.gz bcm5719-llvm-b0602a6b0ff9b3363cf3aa04277154df1b91f83b.zip |
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.
llvm-svn: 122267
-rw-r--r-- | llvm/include/llvm/Support/PathV1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Support/PathV1.h b/llvm/include/llvm/Support/PathV1.h index 5026f2cd12d..b1b61b6c9a8 100644 --- a/llvm/include/llvm/Support/PathV1.h +++ b/llvm/include/llvm/Support/PathV1.h @@ -311,9 +311,9 @@ namespace sys { /// 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. |