aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2016-03-22 21:49:48 -0700
committerGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2016-03-22 21:49:48 -0700
commit98c130e480f9b1ade0d49dec1a7a7ecea53643b9 (patch)
tree579d0b1b6a0a9d1159054cf3770aba783a63be83
parent91ff732a997e438ea960a968b8ae2efda50ce30b (diff)
parent455d18acf32159aa156b2ec8ddf8ebaf8d7a05e4 (diff)
Merge pull request #1379 from DeskConnect/fix-xcode73-error
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 {