summaryrefslogtreecommitdiff
path: root/Source/cmExportSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmExportSet.h')
-rw-r--r--Source/cmExportSet.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/Source/cmExportSet.h b/Source/cmExportSet.h
index a3359ace0c..49f2cac3ea 100644
--- a/Source/cmExportSet.h
+++ b/Source/cmExportSet.h
@@ -23,7 +23,10 @@ class cmExportSet
{
public:
/// Construct an empty export set named \a name
- cmExportSet(const std::string &name) : Name(name) {}
+ cmExportSet(const std::string& name)
+ : Name(name)
+ {
+ }
/// Destructor
~cmExportSet();
@@ -36,10 +39,14 @@ public:
std::string const& GetName() const { return this->Name; }
std::vector<cmTargetExport*> const* GetTargetExports() const
- { return &this->TargetExports; }
+ {
+ return &this->TargetExports;
+ }
std::vector<cmInstallExportGenerator const*> const* GetInstallations() const
- { return &this->Installations; }
+ {
+ return &this->Installations;
+ }
private:
std::vector<cmTargetExport*> TargetExports;