From 57c7577fa91ffc024e5c696a91abe19f5547a787 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 3 Nov 2016 15:58:11 +0300 Subject: Fix Clang and VC warnings --- build2/bin/target | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'build2/bin') 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. -- cgit v1.1