Commit 9875dc58 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix some icc linux problems. addresses #1032

git-svn-id: file:///svn/toku/tokudb.1032b@7836 c7de825b-a66e-492c-adef-691d508d4ae1
parent 0acaed51
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#error #error
#endif #endif
#if __cplusplus #if defined __cplusplus
extern "C" { extern "C" {
#endif #endif
...@@ -20,7 +20,7 @@ static inline uint32_t toku_ntohl(uint32_t i) { ...@@ -20,7 +20,7 @@ static inline uint32_t toku_ntohl(uint32_t i) {
return ntohl(i); return ntohl(i);
} }
#if __cplusplus #if defined __cplusplus
}; };
#endif #endif
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#error #error
#endif #endif
#if __cplusplus #if defined __cplusplus
extern "C" { extern "C" {
#endif #endif
...@@ -36,7 +36,7 @@ static inline uint32_t toku_ntohl(uint32_t i) { ...@@ -36,7 +36,7 @@ static inline uint32_t toku_ntohl(uint32_t i) {
#endif #endif
#if __cplusplus #if defined __cplusplus
}; };
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment