summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-01-04 13:04:09 -0800
committerRichard Linden <none@none>2013-01-04 13:04:09 -0800
commitb2197101c488de66ca9ecf71c229f5b80d1390fd (patch)
treeb36707498cf770ec395de40b4690242267fd5cc8 /indra
parent019836a39667889d4347277cde82270113992bb6 (diff)
SH-3468 WIP add memory tracking base class
fix for compile error on windows ignore stdint.h even though VS2010 provides it
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/llmemory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcommon/llmemory.h b/indra/llcommon/llmemory.h
index 7e73afe06a..4ead45679f 100644
--- a/indra/llcommon/llmemory.h
+++ b/indra/llcommon/llmemory.h
@@ -27,7 +27,9 @@
#define LLMEMORY_H
#include "linden_common.h"
-#include "stdint.h"
+#if !LL_WINDOWS
+#include <stdint.h>
+#endif
class LLMutex ;