From 73a64baac30f5c478201e9f86dc4dd5ef85f0192 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 28 May 2021 10:41:36 +0200 Subject: Fix few Windows/VC compatibility issues --- libbuild2/target-key.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libbuild2/target-key.hxx') diff --git a/libbuild2/target-key.hxx b/libbuild2/target-key.hxx index 2cc58f9..f5351b8 100644 --- a/libbuild2/target-key.hxx +++ b/libbuild2/target-key.hxx @@ -21,10 +21,10 @@ namespace build2 class LIBBUILD2_SYMEXPORT target_key { public: - const target_type* const type; - const dir_path* const dir; // Can be relative if part of prerequisite_key. - const dir_path* const out; // Can be relative if part of prerequisite_key. - const string* const name; + const target_type* type; + const dir_path* dir; // Can be relative if part of prerequisite_key. + const dir_path* out; // Can be relative if part of prerequisite_key. + const string* name; mutable optional ext; // Absent - unspecified, empty - none. template -- cgit v1.1