Fix missing namespace opening and closing.

This commit is contained in:
Ryan Curtin
2019-09-30 09:15:55 -04:00
parent 89db422a8c
commit 18f53fcb41
+6
View File
@@ -51,8 +51,14 @@ inline bool ImageFormatSupported(const std::string& fileName, const bool save)
return false;
}
} // namespace data
} // namespace mlpack
#endif // HAS_STB.
namespace mlpack {
namespace data {
inline ImageInfo::ImageInfo(const size_t width,
const size_t height,
const size_t channels,