summaryrefslogtreecommitdiffhomepage
path: root/examples/others/sparsepp/spp_stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/others/sparsepp/spp_stdint.h')
-rw-r--r--examples/others/sparsepp/spp_stdint.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/others/sparsepp/spp_stdint.h b/examples/others/sparsepp/spp_stdint.h
deleted file mode 100644
index 3adced9c..00000000
--- a/examples/others/sparsepp/spp_stdint.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#if !defined(spp_stdint_h_guard)
-#define spp_stdint_h_guard
-
-#include "spp_config.h"
-
-#if defined(SPP_HAS_CSTDINT) && (__cplusplus >= 201103)
- #include <cstdint>
-#else
- #if defined(__FreeBSD__) || defined(__IBMCPP__) || defined(_AIX)
- #include <inttypes.h>
- #else
- #include <stdint.h>
- #endif
-#endif
-
-#endif // spp_stdint_h_guard