aboutsummaryrefslogtreecommitdiff
path: root/build2/operation.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-01-23 12:13:33 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-01-23 12:13:33 +0200
commitc6a07db01dd75c9d39a54b8bcc01ce262245ad52 (patch)
treeb58fe07c904bf6f434b9edaa736777e238907ecc /build2/operation.cxx
parent1c7d67d9895c2bdbef13541b154ea17d25b8d515 (diff)
Add bunch of missing const's
Diffstat (limited to 'build2/operation.cxx')
-rw-r--r--build2/operation.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/build2/operation.cxx b/build2/operation.cxx
index f2e3a29..545bc9e 100644
--- a/build2/operation.cxx
+++ b/build2/operation.cxx
@@ -169,7 +169,7 @@ namespace build2
}
}
- meta_operation_info noop {
+ const meta_operation_info noop {
noop_id,
"noop",
"", // Presumably we will never need these since we are not going
@@ -185,7 +185,7 @@ namespace build2
nullptr // meta-operation post
};
- meta_operation_info perform {
+ const meta_operation_info perform {
perform_id,
"perform",
"",
@@ -203,7 +203,7 @@ namespace build2
// operations
//
- operation_info default_ {
+ const operation_info default_ {
default_id,
"<default>",
"",
@@ -214,7 +214,7 @@ namespace build2
nullptr
};
- operation_info update {
+ const operation_info update {
update_id,
"update",
"update",
@@ -225,7 +225,7 @@ namespace build2
nullptr
};
- operation_info clean {
+ const operation_info clean {
clean_id,
"clean",
"clean",