From c6a07db01dd75c9d39a54b8bcc01ce262245ad52 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 23 Jan 2017 12:13:33 +0200 Subject: Add bunch of missing const's --- build2/operation.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build2/operation.cxx') 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, "", "", @@ -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", -- cgit v1.1