From 15c5784d3ce42afcd5b641532912d3b05d97d36b Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 12 Jun 2014 13:32:11 +0000 Subject: Replace llvm::error_code with std::error_code. llvm-svn: 210776 --- clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang-tools-extra/unittests/clang-modernize/IncludeDirectivesTest.cpp') 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 '\'. 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; -- cgit v1.2.3