summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-13 18:08:58 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-02-13 18:08:58 +0100
commitd19030946af88f57a4b2b29af9228cbbf0386a71 (patch)
tree2c92b2450e6872403cdd50b43ff764da236ffb12
parent5df6c5248e1c1be3aeaefa10ff9eb9be593ec2fd (diff)
downloadATCD-d19030946af88f57a4b2b29af9228cbbf0386a71.tar.gz
Revert one constexpr change
* ACE/apps/gperf/src/Key_List.cpp:
-rw-r--r--ACE/apps/gperf/src/Key_List.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/apps/gperf/src/Key_List.cpp b/ACE/apps/gperf/src/Key_List.cpp
index edfc738a947..cdb6ee90851 100644
--- a/ACE/apps/gperf/src/Key_List.cpp
+++ b/ACE/apps/gperf/src/Key_List.cpp
@@ -816,7 +816,7 @@ Key_List::output_keyword_table ()
int pointer_and_type_enabled = option[POINTER] && option[TYPE];
ACE_OS::printf ("%sstatic %s%swordlist[] =\n%s%s{\n",
indent,
- option[CONSTANT] || pointer_and_type_enabled == 0 ? "constexpr " : "",
+ option[CONSTANT] || pointer_and_type_enabled == 0 ? "const " : "",
struct_tag,
indent,
indent);