diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-07-28 13:13:38 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-07-28 15:47:26 (GMT) |
commit | 49117623581f8f154adcf92820dce48a4dfbe71d (patch) | |
tree | 9282667cd0edfa5d991a78e09a4c1234a06f677e /Source/cmOutputConverter.h | |
parent | a929255dec9e46ccc27d7b44d000a2e568cbfd99 (diff) | |
download | CMake-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.h | 4 |
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: |