Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-16 09:13:12

0001 /*------------------------------- -*- C -*- ---------------------------------*
0002  * Copyright Celeritas contributors: see top-level COPYRIGHT file for details
0003  * SPDX-License-Identifier: (Apache-2.0 OR MIT)
0004  *---------------------------------------------------------------------------*/
0005 /*!
0006  * \file celeritas_version.h
0007  * \brief Version metadata for Celeritas.
0008  * \deprecated This file should be replaced by "corecel/Version.hh".
0009  */
0010 //---------------------------------------------------------------------------//
0011 #ifndef celeritas_version_h
0012 #define celeritas_version_h
0013 
0014 #if __cplusplus < 201703L
0015 #    error "Celeritas requires C++17 or greater and is not C compatible"
0016 #endif
0017 
0018 #if __GNUC__ > 8 || __clang__
0019 #    pragma GCC warning \
0020         "celeritas_version.h is deprecated and should be replaced by \"corecel/Version.hh\""
0021 #endif
0022 
0023 #include "corecel/Version.hh"
0024 
0025 #endif /* celeritas_version_h */