aboutsummaryrefslogtreecommitdiff
path: root/Gem/develop/include/Gem/Gem/Exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'Gem/develop/include/Gem/Gem/Exception.h')
-rw-r--r--Gem/develop/include/Gem/Gem/Exception.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gem/develop/include/Gem/Gem/Exception.h b/Gem/develop/include/Gem/Gem/Exception.h
index 8815b0a..85a91f6 100644
--- a/Gem/develop/include/Gem/Gem/Exception.h
+++ b/Gem/develop/include/Gem/Gem/Exception.h
@@ -41,13 +41,13 @@ class GEM_EXTERN GemException
public:
GemException(void);
GemException(const char*error);
- GemException(const std::string error);
+ GemException(const std::string&error);
virtual ~GemException(void);
virtual const char *what(void) const;
virtual void report(const char*origin=0) const;
private:
- const std::string ErrorString;
+ const char*ErrorString;
};
namespace gem {