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 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build2/operation') diff --git a/build2/operation b/build2/operation index bddc197..0daf413 100644 --- a/build2/operation +++ b/build2/operation @@ -251,8 +251,8 @@ namespace build2 void execute (action, const action_targets&, bool quiet); - extern meta_operation_info noop; - extern meta_operation_info perform; + extern const meta_operation_info noop; + extern const meta_operation_info perform; // Operation info. // @@ -283,9 +283,9 @@ namespace build2 // Built-in operations. // - extern operation_info default_; - extern operation_info update; - extern operation_info clean; + extern const operation_info default_; + extern const operation_info update; + extern const operation_info clean; // Global meta/operation tables. Each registered meta/operation // is assigned an id which is used as an index in the per-project -- cgit v1.1