Add missing include to status.h

status.h must include <ostream> to use std::ostream.
This commit is contained in:
Casey Carter 2019-03-19 08:56:49 -07:00 committed by Changming Sun
parent 4cc7121368
commit 3f52de07c7

View file

@ -14,6 +14,7 @@ limitations under the License.
#pragma once
#include <memory>
#include <ostream>
#include <string>
#include "core/common/ml_status.h"