From: Chris Lattner Date: Wed, 23 Sep 2009 05:39:46 +0000 (+0000) Subject: return a bool value as a bool X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a3bc6df36848188e9d0c1d978170c2b0918c6a3;p=clang return a bool value as a bool git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82613 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/TargetInfo.h b/include/clang/Basic/TargetInfo.h index 64692ba37a..1f61e3fccc 100644 --- a/include/clang/Basic/TargetInfo.h +++ b/include/clang/Basic/TargetInfo.h @@ -385,7 +385,7 @@ public: } // isTLSSupported - Whether the target supports thread-local storage - unsigned isTLSSupported() const { + bool isTLSSupported() const { return TLSSupported; }