Remove String->const char* conversion operator in favor of c_str method
[clinton/bobotpp.git] / source / String.H
index b138a57..7d1bee9 100644 (file)
@@ -82,7 +82,7 @@ public:
 
   friend std::string operator+(const std::string &, const String &);
   
-  operator const char *() const;
+  const char* c_str () const;
   operator std::string () const;
 
   friend std::ostream & operator<<(std::ostream &, const String &);