25 lines
983 B
C++
25 lines
983 B
C++
// Lean compiler output
|
|
// Module: init.data.rbmap.default
|
|
// Imports: init.data.rbtree.default init.data.rbmap.basic
|
|
#include "runtime/object.h"
|
|
#include "runtime/apply.h"
|
|
typedef lean::object obj; typedef lean::usize usize;
|
|
typedef lean::uint8 uint8; typedef lean::uint16 uint16;
|
|
typedef lean::uint32 uint32; typedef lean::uint64 uint64;
|
|
#if defined(__clang__)
|
|
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
#pragma clang diagnostic ignored "-Wunused-label"
|
|
#elif defined(__GNUC__) && !defined(__CLANG__)
|
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
#pragma GCC diagnostic ignored "-Wunused-label"
|
|
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
#endif
|
|
void initialize_init_data_rbtree_default();
|
|
void initialize_init_data_rbmap_basic();
|
|
static bool _G_initialized = false;
|
|
void initialize_init_data_rbmap_default() {
|
|
if (_G_initialized) return;
|
|
_G_initialized = true;
|
|
initialize_init_data_rbtree_default();
|
|
initialize_init_data_rbmap_basic();
|
|
}
|