summaryrefslogtreecommitdiff
path: root/compiler/moco-tf/src/TFFormattedGraph.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/moco-tf/src/TFFormattedGraph.h')
-rw-r--r--compiler/moco-tf/src/TFFormattedGraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/moco-tf/src/TFFormattedGraph.h b/compiler/moco-tf/src/TFFormattedGraph.h
index f79208536..81978954f 100644
--- a/compiler/moco-tf/src/TFFormattedGraph.h
+++ b/compiler/moco-tf/src/TFFormattedGraph.h
@@ -19,7 +19,7 @@
#include <locop/FormattedGraph.h>
-#include <stdex/Memory.h>
+#include <memory>
namespace moco
{
@@ -49,7 +49,7 @@ public:
public:
std::unique_ptr<locop::NodeSummaryBuilder> create(const locop::SymbolTable *tlb) const final
{
- return stdex::make_unique<MocoNodeSummaryBuilder>(tlb);
+ return std::make_unique<MocoNodeSummaryBuilder>(tlb);
}
};