diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 13:32:11 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 13:32:11 +0000 |
commit | 15c5784d3ce42afcd5b641532912d3b05d97d36b (patch) | |
tree | cbf024d55db787349c2e3bce8637a14c71f3b16c /clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp | |
parent | 559dd851b627576d85525cd3ad42488b7df83f1b (diff) | |
download | bcm5719-llvm-15c5784d3ce42afcd5b641532912d3b05d97d36b.tar.gz bcm5719-llvm-15c5784d3ce42afcd5b641532912d3b05d97d36b.zip |
Replace llvm::error_code with std::error_code.
llvm-svn: 210776
Diffstat (limited to 'clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp')
-rw-r--r-- | clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp b/clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp index dfb4b99b9d9..b13528825d4 100644 --- a/clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp +++ b/clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp @@ -66,7 +66,7 @@ public: /// refer to the headers by using '\<FileName\>'. std::string makeHeaderFileName(StringRef FileName) const { SmallString<128> Path; - llvm::error_code EC = llvm::sys::fs::current_path(Path); + std::error_code EC = llvm::sys::fs::current_path(Path); assert(!EC); (void)EC; |