Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/range/v3/version.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /// \file
0002 // Range v3 library
0003 //
0004 //  Copyright Eric Niebler 2017-present
0005 //
0006 //  Use, modification and distribution is subject to the
0007 //  Boost Software License, Version 1.0. (See accompanying
0008 //  file LICENSE_1_0.txt or copy at
0009 //  http://www.boost.org/LICENSE_1_0.txt)
0010 //
0011 // Project home: https://github.com/ericniebler/range-v3
0012 //
0013 
0014 #ifndef RANGES_V3_VERSION_HPP
0015 #define RANGES_V3_VERSION_HPP
0016 
0017 #define RANGE_V3_MAJOR 0
0018 #define RANGE_V3_MINOR 12
0019 #define RANGE_V3_PATCHLEVEL 0
0020 
0021 #define RANGE_V3_VERSION \
0022     (RANGE_V3_MAJOR * 10000 + RANGE_V3_MINOR * 100 + RANGE_V3_PATCHLEVEL)
0023 
0024 #endif