@@ -91,13 +91,13 @@ UnitOfMeasure::UnitOfMeasure(const std::string &nameIn, double toSIIn,
9191 UnitOfMeasure::Type typeIn,
9292 const std::string &codeSpaceIn,
9393 const std::string &codeIn)
94- : d(internal ::make_unique<Private>(nameIn, toSIIn, typeIn, codeSpaceIn,
95- codeIn)) {}
94+ : d(std ::make_unique<Private>(nameIn, toSIIn, typeIn, codeSpaceIn,
95+ codeIn)) {}
9696
9797// ---------------------------------------------------------------------------
9898
9999UnitOfMeasure::UnitOfMeasure (const UnitOfMeasure &other)
100- : d(internal ::make_unique<Private>(*(other.d))) {}
100+ : d(std ::make_unique<Private>(*(other.d))) {}
101101
102102// ---------------------------------------------------------------------------
103103
@@ -376,12 +376,12 @@ struct Measure::Private {
376376/* * \brief Instantiate a Measure.
377377 */
378378Measure::Measure (double valueIn, const UnitOfMeasure &unitIn)
379- : d(internal ::make_unique<Private>(valueIn, unitIn)) {}
379+ : d(std ::make_unique<Private>(valueIn, unitIn)) {}
380380
381381// ---------------------------------------------------------------------------
382382
383383Measure::Measure (const Measure &other)
384- : d(internal ::make_unique<Private>(*(other.d))) {}
384+ : d(std ::make_unique<Private>(*(other.d))) {}
385385
386386// ---------------------------------------------------------------------------
387387
@@ -555,18 +555,18 @@ struct DateTime::Private {
555555
556556// ---------------------------------------------------------------------------
557557
558- DateTime::DateTime () : d(internal ::make_unique<Private>(std::string())) {}
558+ DateTime::DateTime () : d(std ::make_unique<Private>(std::string())) {}
559559
560560// ---------------------------------------------------------------------------
561561
562562DateTime::DateTime (const std::string &str)
563- : d(internal ::make_unique<Private>(str)) {}
563+ : d(std ::make_unique<Private>(str)) {}
564564
565565// ---------------------------------------------------------------------------
566566
567567// ! @cond Doxygen_Suppress
568568DateTime::DateTime (const DateTime &other)
569- : d(internal ::make_unique<Private>(*(other.d))) {}
569+ : d(std ::make_unique<Private>(*(other.d))) {}
570570// ! @endcond
571571
572572// ---------------------------------------------------------------------------
@@ -626,12 +626,12 @@ struct IdentifiedObject::Private {
626626
627627// ---------------------------------------------------------------------------
628628
629- IdentifiedObject::IdentifiedObject () : d(internal ::make_unique<Private>()) {}
629+ IdentifiedObject::IdentifiedObject () : d(std ::make_unique<Private>()) {}
630630
631631// ---------------------------------------------------------------------------
632632
633633IdentifiedObject::IdentifiedObject (const IdentifiedObject &other)
634- : d(internal ::make_unique<Private>(*(other.d))) {}
634+ : d(std ::make_unique<Private>(*(other.d))) {}
635635
636636// ---------------------------------------------------------------------------
637637
@@ -975,13 +975,13 @@ struct ObjectDomain::Private {
975975// ! @cond Doxygen_Suppress
976976ObjectDomain::ObjectDomain (const optional<std::string> &scopeIn,
977977 const ExtentPtr &extent)
978- : d(internal ::make_unique<Private>(scopeIn, extent)) {}
978+ : d(std ::make_unique<Private>(scopeIn, extent)) {}
979979// ! @endcond
980980
981981// ---------------------------------------------------------------------------
982982
983983ObjectDomain::ObjectDomain (const ObjectDomain &other)
984- : d(internal ::make_unique<Private>(*(other.d))) {}
984+ : d(std ::make_unique<Private>(*(other.d))) {}
985985
986986// ---------------------------------------------------------------------------
987987
@@ -1167,12 +1167,12 @@ struct ObjectUsage::Private {
11671167
11681168// ---------------------------------------------------------------------------
11691169
1170- ObjectUsage::ObjectUsage () : d(internal ::make_unique<Private>()) {}
1170+ ObjectUsage::ObjectUsage () : d(std ::make_unique<Private>()) {}
11711171
11721172// ---------------------------------------------------------------------------
11731173
11741174ObjectUsage::ObjectUsage (const ObjectUsage &other)
1175- : IdentifiedObject(other), d(internal ::make_unique<Private>(*(other.d))) {}
1175+ : IdentifiedObject(other), d(std ::make_unique<Private>(*(other.d))) {}
11761176
11771177// ---------------------------------------------------------------------------
11781178
@@ -1320,17 +1320,17 @@ struct DataEpoch::Private {
13201320
13211321// ---------------------------------------------------------------------------
13221322
1323- DataEpoch::DataEpoch () : d(internal ::make_unique<Private>(Measure())) {}
1323+ DataEpoch::DataEpoch () : d(std ::make_unique<Private>(Measure())) {}
13241324
13251325// ---------------------------------------------------------------------------
13261326
13271327DataEpoch::DataEpoch (const Measure &coordinateEpochIn)
1328- : d(internal ::make_unique<Private>(coordinateEpochIn)) {}
1328+ : d(std ::make_unique<Private>(coordinateEpochIn)) {}
13291329
13301330// ---------------------------------------------------------------------------
13311331
13321332DataEpoch::DataEpoch (const DataEpoch &other)
1333- : d(internal ::make_unique<Private>(*(other.d))) {}
1333+ : d(std ::make_unique<Private>(*(other.d))) {}
13341334
13351335// ---------------------------------------------------------------------------
13361336
0 commit comments