From a7be5b527f77941de60747abce5dab86aa2af646 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Mon, 20 Nov 2017 23:53:53 +0100 Subject: [PATCH] add missing return statement. --- code/D3MFExporter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/D3MFExporter.cpp b/code/D3MFExporter.cpp index 6705ed768..a602ff7d8 100644 --- a/code/D3MFExporter.cpp +++ b/code/D3MFExporter.cpp @@ -100,6 +100,8 @@ bool D3MFExporter::exportAsset() { writeBuild(); mOutput << "\n"; + + return true; } void D3MFExporter::writeHeader() {