aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Conrad Kramer <conrad@kramerapps.com>2016-03-14 13:58:46 -0700
committerGravatar Conrad Kramer <conrad@kramerapps.com>2016-03-14 14:05:23 -0700
commit455d18acf32159aa156b2ec8ddf8ebaf8d7a05e4 (patch)
tree575296690923e04a48b215afffff0a5bafdd8cee
parent7444163de7d0da38b9d74464d3d255a54541b0e6 (diff)
Move inttypes include within ifdef __cplusplus in MCIndexSet.h
-rw-r--r--src/core/basetypes/MCIndexSet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/basetypes/MCIndexSet.h b/src/core/basetypes/MCIndexSet.h
index 2cf67b07..5fd66cfa 100644
--- a/src/core/basetypes/MCIndexSet.h
+++ b/src/core/basetypes/MCIndexSet.h
@@ -12,10 +12,11 @@
#include <MailCore/MCObject.h>
#include <MailCore/MCRange.h>
-#include <inttypes.h>
#ifdef __cplusplus
+#include <inttypes.h>
+
namespace mailcore {
class MAILCORE_EXPORT IndexSet : public Object {