Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
lukka
CMake
Commits
c9d2e1ce
Commit
c9d2e1ce
authored
Mar 04, 2019
by
Vitaly Stakhovsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing `override`
parent
6873e984
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Source/cmGlobalVisualStudioVersionedGenerator.cxx
Source/cmGlobalVisualStudioVersionedGenerator.cxx
+3
-3
Source/cmLocalGhsMultiGenerator.h
Source/cmLocalGhsMultiGenerator.h
+1
-1
No files found.
Source/cmGlobalVisualStudioVersionedGenerator.cxx
View file @
c9d2e1ce
...
...
@@ -206,8 +206,8 @@ class cmGlobalVisualStudioVersionedGenerator::Factory16
:
public
cmGlobalGeneratorFactory
{
public:
virtual
cmGlobalGenerator
*
CreateGlobalGenerator
(
const
std
::
string
&
name
,
cmake
*
cm
)
const
cmGlobalGenerator
*
CreateGlobalGenerator
(
const
std
::
string
&
name
,
cmake
*
cm
)
const
override
{
std
::
string
genName
;
const
char
*
p
=
cmVS16GenName
(
name
,
genName
);
...
...
@@ -221,7 +221,7 @@ public:
return
0
;
}
virtual
void
GetDocumentation
(
cmDocumentationEntry
&
entry
)
const
void
GetDocumentation
(
cmDocumentationEntry
&
entry
)
const
override
{
entry
.
Name
=
std
::
string
(
vs16generatorName
);
entry
.
Brief
=
"Generates Visual Studio 2019 project files. "
...
...
Source/cmLocalGhsMultiGenerator.h
View file @
c9d2e1ce
...
...
@@ -23,7 +23,7 @@ public:
/**
* Generate the makefile for this directory.
*/
virtual
void
Generate
();
void
Generate
()
override
;
std
::
string
GetTargetDirectory
(
cmGeneratorTarget
const
*
target
)
const
override
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment