aboutsummaryrefslogtreecommitdiff
path: root/build2/bin
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-11-03 15:58:11 +0300
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:37 +0200
commit57c7577fa91ffc024e5c696a91abe19f5547a787 (patch)
tree410a09a2d1ebf6da5e770b644c7a1806f2d1aef9 /build2/bin
parentd933699b4dd106c227f8d07a2471d5f39f1c82af (diff)
Fix Clang and VC warnings
Diffstat (limited to 'build2/bin')
-rw-r--r--build2/bin/target6
1 files changed, 5 insertions, 1 deletions
diff --git a/build2/bin/target b/build2/bin/target
index 0a324a5..caf96f4 100644
--- a/build2/bin/target
+++ b/build2/bin/target
@@ -105,7 +105,11 @@ namespace build2
public:
static const target_type static_type;
- virtual const target_type& dynamic_type () const {return static_type;}
+
+ virtual const target_type& dynamic_type () const override
+ {
+ return static_type;
+ }
};
// Windows import library.