From 3f52de07c7b844ecfdd6310d705d83513402b12d Mon Sep 17 00:00:00 2001 From: Casey Carter Date: Tue, 19 Mar 2019 08:56:49 -0700 Subject: [PATCH] Add missing include to status.h status.h must include to use std::ostream. --- include/onnxruntime/core/common/status.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/onnxruntime/core/common/status.h b/include/onnxruntime/core/common/status.h index ad0d3ef6a6..7ae76a915c 100644 --- a/include/onnxruntime/core/common/status.h +++ b/include/onnxruntime/core/common/status.h @@ -14,6 +14,7 @@ limitations under the License. #pragma once #include +#include #include #include "core/common/ml_status.h"