summaryrefslogtreecommitdiffstats
path: root/Source/cmWin32ProcessExecution.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-05 14:24:45 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-05 14:24:45 (GMT)
commit1ba0a050395fda65718da8e62a896ea788dec8e4 (patch)
treea2e9c39784a5eeea89dd518bd3f57bb8a8ad47d5 /Source/cmWin32ProcessExecution.h
parenta518fed4e35bc7c630be548c62f756121dba0b8b (diff)
downloadCMake-1ba0a050395fda65718da8e62a896ea788dec8e4.zip
CMake-1ba0a050395fda65718da8e62a896ea788dec8e4.tar.gz
CMake-1ba0a050395fda65718da8e62a896ea788dec8e4.tar.bz2
Fix borland build. Borland Run command should be static, since it is called with no object...
Diffstat (limited to 'Source/cmWin32ProcessExecution.h')
-rw-r--r--Source/cmWin32ProcessExecution.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmWin32ProcessExecution.h b/Source/cmWin32ProcessExecution.h
index c7b97e5..c0eafbf 100644
--- a/Source/cmWin32ProcessExecution.h
+++ b/Source/cmWin32ProcessExecution.h
@@ -132,9 +132,9 @@ public:
* will display it in our app. Consequently, we check for input in
* our app and send it off to the write end of the stdin pipe.
*/
- bool BorlandRunCommand(const char* command, const char* dir,
- std::string& output, int& retVal, bool verbose,
- int timeout);
+ static bool BorlandRunCommand(const char* command, const char* dir,
+ std::string& output, int& retVal, bool verbose,
+ int timeout);
private:
bool PrivateOpen(const char*, const char*, int, int);