comparison oct-conf-post-public.in.h @ 31606:dfa5d9c3ae72

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 01 Dec 2022 14:28:07 -0800
parents d5415300e53b e88a07dec498
children 5f11de0e7440
comparison
equal deleted inserted replaced
31604:9ecc95d840ca 31606:dfa5d9c3ae72
27 # include <cinttypes> 27 # include <cinttypes>
28 #else 28 #else
29 # include <inttypes.h> 29 # include <inttypes.h>
30 #endif 30 #endif
31 31
32 # define OCTAVE_NAMESPACE_BEGIN namespace octave { 32 #define OCTAVE_BEGIN_NAMESPACE(name) namespace name {
33 # define OCTAVE_NAMESPACE_END } 33 #define OCTAVE_END_NAMESPACE(name) }
34 34
35 /* The C++ standard is evolving to allow attribute hints in a 35 /* The C++ standard is evolving to allow attribute hints in a
36 compiler-independent manner. In C++ 2011 support for noreturn was 36 compiler-independent manner. In C++ 2011 support for noreturn was
37 added. In C++ 2014 support for deprecated was added. The Octave 37 added. In C++ 2014 support for deprecated was added. The Octave
38 code base has been future-proofed by using macros of the form 38 code base has been future-proofed by using macros of the form