12 lines
177 B
C++
12 lines
177 B
C++
#pragma once
|
|
|
|
#define ROARING_EXCEPTIONS 0
|
|
#define ROARING_TERMINATE(message) std::abort()
|
|
#include "roaring/roaring.hh"
|
|
|
|
namespace clice {
|
|
|
|
using Bitmap = roaring::Roaring;
|
|
|
|
}
|