diff options
Diffstat (limited to 'vm/BitVector.h')
| -rw-r--r-- | vm/BitVector.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vm/BitVector.h b/vm/BitVector.h index d1a0ca31d..0d2335091 100644 --- a/vm/BitVector.h +++ b/vm/BitVector.h @@ -20,6 +20,10 @@ #ifndef _DALVIK_BITVECTOR #define _DALVIK_BITVECTOR +#ifdef __cplusplus +extern "C" { +#endif + /* * Expanding bitmap, used for tracking resources. Bits are numbered starting * from zero. @@ -100,4 +104,8 @@ void dvmBitVectorIteratorInit(BitVector* pBits, BitVectorIterator* iterator); /* Return the next position set to 1. -1 means end-of-vector reached */ int dvmBitVectorIteratorNext(BitVectorIterator* iterator); +#ifdef __cplusplus +} +#endif + #endif /*_DALVIK_BITVECTOR*/ |
