summaryrefslogtreecommitdiffstats
path: root/Source/cmOutputConverter.h
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-07-28 13:13:38 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-07-28 15:47:26 (GMT)
commit49117623581f8f154adcf92820dce48a4dfbe71d (patch)
tree9282667cd0edfa5d991a78e09a4c1234a06f677e /Source/cmOutputConverter.h
parenta929255dec9e46ccc27d7b44d000a2e568cbfd99 (diff)
downloadCMake-49117623581f8f154adcf92820dce48a4dfbe71d.zip
CMake-49117623581f8f154adcf92820dce48a4dfbe71d.tar.gz
CMake-49117623581f8f154adcf92820dce48a4dfbe71d.tar.bz2
cmOutputConverter: Return bool instead of int in utility functions
Diffstat (limited to 'Source/cmOutputConverter.h')
-rw-r--r--Source/cmOutputConverter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmOutputConverter.h b/Source/cmOutputConverter.h
index 988911d..abd02aa 100644
--- a/Source/cmOutputConverter.h
+++ b/Source/cmOutputConverter.h
@@ -94,9 +94,9 @@ public:
private:
cmState* GetState() const;
- static int Shell__CharNeedsQuotes(char c, int flags);
+ static bool Shell__CharNeedsQuotes(char c, int flags);
static const char* Shell__SkipMakeVariables(const char* c);
- static int Shell__ArgumentNeedsQuotes(const char* in, int flags);
+ static bool Shell__ArgumentNeedsQuotes(const char* in, int flags);
static std::string Shell__GetArgument(const char* in, int flags);
private: