summaryrefslogtreecommitdiff
path: root/lib/common/Utils.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-11-04 16:33:53 +0000
committerChris Wilson <chris+github@qwirx.com>2007-11-04 16:33:53 +0000
commitf24aa2064954b1c529621c8e6425d26c0c78b1bb (patch)
tree930fbc3c44afa10223546eb26e8f75c6c951fc32 /lib/common/Utils.h
parenta7c1c05da41829419060ea3e60c0fa4f95dc4e67 (diff)
Allow ObjectExists() to take a std::string instead of just char *.
Diffstat (limited to 'lib/common/Utils.h')
-rw-r--r--lib/common/Utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/Utils.h b/lib/common/Utils.h
index 5da84d9a..d0842b51 100644
--- a/lib/common/Utils.h
+++ b/lib/common/Utils.h
@@ -29,7 +29,7 @@ enum
ObjectExists_File = 1,
ObjectExists_Dir = 2
};
-int ObjectExists(const char *Filename);
+int ObjectExists(const std::string& rFilename);
#include "MemLeakFindOff.h"