diff options
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 12b8bb4..9e17d60 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -21,6 +21,8 @@ #include "cmPropertyMap.h" #include "cmPolicies.h" +#include <cmsys/auto_ptr.hxx> + class cmake; class cmMakefile; class cmSourceFile; @@ -533,7 +535,8 @@ private: cmTargetLinkInformationMap LinkInformation; // Link interface. - cmTargetLinkInterface* ComputeLinkInterface(const char* config); + cmsys::auto_ptr<cmTargetLinkInterface> + ComputeLinkInterface(const char* config); cmTargetLinkInterfaceMap LinkInterface; // The cmMakefile instance that owns this target. This should |