DAW JSON Link
version.h
Go to the documentation of this file.
1 // Copyright (c) Darrell Wright
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
5 //
6 // Official repository: https://github.com/beached/daw_json_link
7 //
8 
9 #pragma once
10 
12 
13 #include <daw/ciso646.h>
14 
17 #if not defined( DAW_JSON_VER_OVERRIDE )
18 // Should be updated when a potential ABI break is anticipated
19 #if defined( DEBUG ) or not defined( NDEBUG )
20 #define DAW_JSON_VER v3_29_0d
21 #else
22 #define DAW_JSON_VER v3_29_0
23 #endif
24 #else
25 #define DAW_JSON_VER DAW_JSON_VER_OVERRIDE
26 #endif