summaryrefslogtreecommitdiffstats
path: root/Source/cmLinkItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmLinkItem.h')
-rw-r--r--Source/cmLinkItem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLinkItem.h b/Source/cmLinkItem.h
index d2459db..d50b5fc 100644
--- a/Source/cmLinkItem.h
+++ b/Source/cmLinkItem.h
@@ -78,12 +78,12 @@ struct cmLinkInterface : public cmLinkInterfaceLibraries
bool ImplementationIsInterface = false;
- cmLinkInterface() {}
+ cmLinkInterface() = default;
};
struct cmOptionalLinkInterface : public cmLinkInterface
{
- cmOptionalLinkInterface() {}
+ cmOptionalLinkInterface() = default;
bool LibrariesDone = false;
bool AllDone = false;
bool Exists = false;
@@ -105,7 +105,7 @@ struct cmLinkImplementation : public cmLinkImplementationLibraries
// Cache link implementation computation from each configuration.
struct cmOptionalLinkImplementation : public cmLinkImplementation
{
- cmOptionalLinkImplementation() {}
+ cmOptionalLinkImplementation() = default;
bool LibrariesDone = false;
bool LanguagesDone = false;
bool HadHeadSensitiveCondition = false;