Removed exportFileXML, and importXML, updated indra/test's
and generally updated cpp's to V-D look(include order, spelling fixes, and whatnot) Also, commented out pointless using namespace std.
This commit is contained in:
@@ -74,7 +74,7 @@ namespace tut
|
||||
inline void ensure_memory_matches(const char* msg,const void* actual, U32 actual_len, const void* expected,U32 expected_len)
|
||||
{
|
||||
if((expected_len != actual_len) ||
|
||||
(memcmp(actual, expected, actual_len) != 0))
|
||||
(std::memcmp(actual, expected, actual_len) != 0))
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << (msg?msg:"") << (msg?": ":"") << "not equal";
|
||||
@@ -121,6 +121,9 @@ namespace tut
|
||||
|
||||
void ensure_equals(const char* msg,
|
||||
const LLSD& actual, const LLSD& expected);
|
||||
|
||||
void ensure_equals(const std::string& msg,
|
||||
const LLSD& actual, const LLSD& expected);
|
||||
|
||||
void ensure_starts_with(const std::string& msg,
|
||||
const std::string& actual, const std::string& expectedStart);
|
||||
|
||||
Reference in New Issue
Block a user