blob: b372ac123e6b0ff586ee0a7660b466c01987bd6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef COMMON_HH
#define COMMON_HH
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#if __cplusplus < 201402L
#include "make_unique.hh"
#endif
#endif // COMMON_HH
|