|
||||
File indexing completed on 2025-01-18 09:57:47
0001 // MIT License 0002 // 0003 // Copyright (c) 2019 Jonathan R. Madsen 0004 // 0005 // Permission is hereby granted, free of charge, to any person obtaining a copy 0006 // of this software and associated documentation files (the "Software"), to deal 0007 // in the Software without restriction, including without limitation the rights 0008 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 0009 // copies of the Software, and to permit persons to whom the Software is 0010 // furnished to do so, subject to the following conditions: 0011 // 0012 // The above copyright notice and this permission notice shall be included in 0013 // all copies or substantial portions of the Software. 0014 // 0015 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 0016 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 0017 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 0018 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 0019 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 0020 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 0021 // SOFTWARE. 0022 // 0023 // 0024 0025 #pragma once 0026 0027 // 0028 // This file was auto-generated by CMake. DO NOT EDIT! 0029 // 0030 0031 /** \def PTL_VERSION 0032 * \brief 0033 * MAJOR_VERSION: PTL_VERSION / 10000 0034 * MINOR_VERSION: PTL_VERSION % 10000 / 100 0035 * PATCH_VERSION: PTL_VERSION % 100 0036 */ 0037 0038 #define PTL_VERSION_MAJOR 2 0039 #define PTL_VERSION_MINOR 3 0040 #define PTL_VERSION_PATCH 3 0041 0042 #define PTL_VERSION 20303 0043 #define PTL_VERSION_STRING "2.3.3" 0044 0045 #if defined(PTL_VERSION) && defined(PTL_VERSION_MAJOR) 0046 static_assert(PTL_VERSION / 10000 == PTL_VERSION_MAJOR, "Incorrect PTL major version"); 0047 #endif 0048 0049 #if defined(PTL_VERSION) && defined(PTL_VERSION_MINOR) 0050 static_assert(PTL_VERSION % 10000 / 100 == PTL_VERSION_MINOR, 0051 "Incorrect PTL minor version"); 0052 #endif 0053 0054 #if defined(PTL_VERSION) && defined(PTL_VERSION_PATCH) 0055 static_assert(PTL_VERSION % 100 == PTL_VERSION_PATCH, "Incorrect PTL patch version"); 0056 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |