mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
Ninja: remove warnings
This commit is contained in:
@@ -116,12 +116,13 @@ protected:
|
||||
void EnsureParentDirectoryExists(const std::string& path);
|
||||
|
||||
// write rules for Mac OS X Application Bundle content.
|
||||
class MacOSXContentGeneratorType
|
||||
: public cmOSXBundleGenerator::MacOSXContentGeneratorType
|
||||
struct MacOSXContentGeneratorType :
|
||||
cmOSXBundleGenerator::MacOSXContentGeneratorType
|
||||
{
|
||||
public:
|
||||
MacOSXContentGeneratorType(cmNinjaTargetGenerator* Generator);
|
||||
virtual void operator()(cmSourceFile& source, const char* pkgloc);
|
||||
MacOSXContentGeneratorType(cmNinjaTargetGenerator* g) :
|
||||
Generator(g) {}
|
||||
|
||||
void operator()(cmSourceFile& source, const char* pkgloc);
|
||||
|
||||
private:
|
||||
cmNinjaTargetGenerator* Generator;
|
||||
@@ -129,7 +130,7 @@ protected:
|
||||
|
||||
|
||||
protected:
|
||||
MacOSXContentGeneratorType MacOSXContentGenerator;
|
||||
MacOSXContentGeneratorType* MacOSXContentGenerator;
|
||||
// Properly initialized by sub-classes.
|
||||
cmOSXBundleGenerator* OSXBundleGenerator;
|
||||
std::set<cmStdString> MacContentFolders;
|
||||
|
||||
Reference in New Issue
Block a user