Commit 9e53b3d6 by hlu1 Committed by Leyuan Wang

[Bugfix] Missing #include <sstream> (#2629)

Thanks @hlu1 and @tqchen, this is now merged.
parent 0813262f
......@@ -6,6 +6,9 @@
#ifndef TVM_RUNTIME_PACKED_FUNC_H_
#define TVM_RUNTIME_PACKED_FUNC_H_
#ifndef _LIBCPP_SGX_NO_IOSTREAMS
#include <sstream>
#endif
#include <dmlc/logging.h>
#include <functional>
#include <tuple>
......
......@@ -9,6 +9,7 @@
#include <algorithm>
#if defined(__linux__) || defined(__ANDROID__)
#include <fstream>
#include <sstream>
#else
#endif
#if defined(__linux__)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment