diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-03-28 02:49:50 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-03-28 02:49:50 +0000 |
commit | 8e7c48a54b4325925f5edda1738a3537ab2c3c5e (patch) | |
tree | b1c1d5bff75911d8eb22098c5a02aabbd23400ef /tools/libclang/CIndex.cpp | |
parent | fdc1795acc9d5d73a767cc7d43ad1546e93adbba (diff) |
[libclang] Fix gcc error.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/CIndex.cpp')
-rw-r--r-- | tools/libclang/CIndex.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/libclang/CIndex.cpp b/tools/libclang/CIndex.cpp index 3882d7bc95..872c915180 100644 --- a/tools/libclang/CIndex.cpp +++ b/tools/libclang/CIndex.cpp @@ -5739,6 +5739,8 @@ void SetSafetyThreadStackSize(unsigned Value) { SafetyStackThreadSize = Value; } +} + void clang::setBackGroundPriority() { // FIXME: Move to llvm/Support and make it cross-platform. #ifdef __APPLE__ @@ -5746,8 +5748,6 @@ void clang::setBackGroundPriority() { #endif } -} - extern "C" { CXString clang_getClangVersion() { |