diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-12-30 12:32:55 -0500 |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-12-30 12:32:55 -0500 |
commit | 94632087b23f26a0a480cdcbab68fbc9aee7d75a (patch) | |
tree | 5f2f504ab268eebf797c3a5f1cb5c5628d4a026f /Source/cmGlobalVisualStudio10Generator.h | |
parent | ae8525b82f03d3ce0c1e880e62bec0956f90839b (diff) | |
download | cmake-94632087b23f26a0a480cdcbab68fbc9aee7d75a.tar.gz |
Add missing override
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.h b/Source/cmGlobalVisualStudio10Generator.h index 6c4a9e6dc2..15244ac12c 100644 --- a/Source/cmGlobalVisualStudio10Generator.h +++ b/Source/cmGlobalVisualStudio10Generator.h @@ -86,7 +86,7 @@ public: } /** Return true if building for WindowsCE */ - bool TargetsWindowsCE() const { return this->SystemIsWindowsCE; } + bool TargetsWindowsCE() const override { return this->SystemIsWindowsCE; } /** Return true if building for WindowsPhone */ bool TargetsWindowsPhone() const { return this->SystemIsWindowsPhone; } |