From 5b2f960ceb9c585ebc5b4907811cad1bfbe27dec Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Fri, 19 Dec 2008 22:33:29 +0000 Subject: Fixing tut related compile errors on etch: (1) the LLLand class had to be forward declared in a cpp file that did not include llland.h (2) ensure_equals(const char*, type, type) requires that type have an operator!=(type, type) defined. (3) ensure_equals(const char*, type, type) is so overloaded that the compiler can have trouble picking the right version when it has to implicitly cast a std::string to "const char*" AND multiple valid casts exist for type --> S32, F32, etc. To solve this problem we must explicitly pass in a "const char*" instead of a std::string. Reviewed with CG --- indra/llcommon/lldate.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'indra/llcommon/lldate.h') diff --git a/indra/llcommon/lldate.h b/indra/llcommon/lldate.h index 7bff18d927..2b53c8cc9a 100644 --- a/indra/llcommon/lldate.h +++ b/indra/llcommon/lldate.h @@ -116,6 +116,8 @@ private: F64 mSecondsSinceEpoch; }; +// this operator required for tut +bool operator!=(const LLDate& first, const LLDate& second); // Helper function to stream out a date std::ostream& operator<<(std::ostream& s, const LLDate& date); -- cgit v1.2.3