MIRA
NoExcept.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) by
3  * MetraLabs GmbH (MLAB), GERMANY
4  * and
5  * Neuroinformatics and Cognitive Robotics Labs (NICR) at TU Ilmenau, GERMANY
6  * All rights reserved.
7  *
8  * Contact: info@mira-project.org
9  *
10  * Commercial Usage:
11  * Licensees holding valid commercial licenses may use this file in
12  * accordance with the commercial license agreement provided with the
13  * software or, alternatively, in accordance with the terms contained in
14  * a written agreement between you and MLAB or NICR.
15  *
16  * GNU General Public License Usage:
17  * Alternatively, this file may be used under the terms of the GNU
18  * General Public License version 3.0 as published by the Free Software
19  * Foundation and appearing in the file LICENSE.GPL3 included in the
20  * packaging of this file. Please review the following information to
21  * ensure the GNU General Public License version 3.0 requirements will be
22  * met: http://www.gnu.org/copyleft/gpl.html.
23  * Alternatively you may (at your option) use any later version of the GNU
24  * General Public License if such license has been publicly approved by
25  * MLAB and NICR (or its successors, if any).
26  *
27  * IN NO EVENT SHALL "MLAB" OR "NICR" BE LIABLE TO ANY PARTY FOR DIRECT,
28  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF
29  * THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF "MLAB" OR
30  * "NICR" HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * "MLAB" AND "NICR" SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING,
33  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
34  * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
35  * ON AN "AS IS" BASIS, AND "MLAB" AND "NICR" HAVE NO OBLIGATION TO
36  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR MODIFICATIONS.
37  */
38 
47 #ifndef _MIRA_NOEXCEPT_H_
48 #define _MIRA_NOEXCEPT_H_
49 
50 #include <platform/Platform.h>
51 
53 
54 // Note: noexcept and throw() is NOT exactly the same meaning!
55 // See https://en.cppreference.com/w/cpp/language/noexcept_spec
56 // "throw() - Non-throwing dynamic exception specification (unlike
57 // noexcept(true) guarantees stack unwinding and may call std::unexpected)"
58 //
59 // However:
60 // - noexcept is not supported by older compilers
61 // - throw() is deprecated in C++ 17, removed in C++20
62 // --> using noexcept where supported and throw() otherwise seems the next best thing to do
63 //
64 // or just don't use it:
65 // https://akrzemi1.wordpress.com/2014/04/24/noexcept-what-for/
66 
68 
69 #ifdef BOOST_NOEXCEPT_OR_NOTHROW
70  #define MIRA_NOEXCEPT_OR_NOTHROW BOOST_NOEXCEPT_OR_NOTHROW
71 #endif
72 
74 
75 // https://stackoverflow.com/questions/18387640/how-to-deal-with-noexcept-in-visual-studio
76 // https://gcc.gnu.org/gcc-4.6/changes.html
77 
78 #ifndef MIRA_NOEXCEPT_OR_NOTHROW
79  #if defined(MIRA_GNUC_VERSION)
80  #if MIRA_GNUC_VERSION >= 40600
81  #define MIRA_NOEXCEPT_OR_NOTHROW noexcept
82  #else
83  #define MIRA_NOEXCEPT_OR_NOTHROW throw()
84  #endif
85  #elif defined(_MSC_FULL_VER)
86  #if _MSC_FULL_VER >= 190023026
87  #define MIRA_NOEXCEPT_OR_NOTHROW noexcept
88  #else
89  #define MIRA_NOEXCEPT_OR_NOTHROW throw()
90  #endif
91  #elif defined(__clang__)
92  #if __has_feature(cxx_noexcept)
93  #define MIRA_NOEXCEPT_OR_NOTHROW noexcept
94  #else
95  #define MIRA_NOEXCEPT_OR_NOTHROW throw()
96  #endif
97  #else
98  // for any unknown compiler just assume it supports noexcept
99  #define MIRA_NOEXCEPT_OR_NOTHROW noexcept
100  #endif
101 #endif
102 
104 
105 #endif
Platform dependent defines and macros.