lemire / SIMDCompressionAndIntersection

A C++ library to compress and intersect sorted lists of integers using SIMD instructions
Apache License 2.0
419 stars 58 forks source link

use quote instead of bracket include #25

Closed yonik closed 3 years ago

yonik commented 3 years ago

Using #include "common.h" allows users to namespace the include files to avoid clashes (e.g. #include "simdcomp/include/intersection.h") It's only missing in one place.

lemire commented 3 years ago

Yep! Great.