Welcome to mirror list, hosted at ThFree Co, Russian Federation.

static_assert.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4a6e7e6b68980537a302ef5ee3b493cb7082261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#ifdef new
#undef new
#endif

#include <boost/static_assert.hpp>
#define STATIC_ASSERT BOOST_STATIC_ASSERT

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif