From f3a48e21e89e7f29224e544ea8897b2996bdb211 Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Wed, 1 Sep 2021 10:47:48 +0200 Subject: [PATCH] Added missing scope for ostream. --- tool/DataTypeHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/DataTypeHandler.h b/tool/DataTypeHandler.h index 90648957..64d03cfc 100644 --- a/tool/DataTypeHandler.h +++ b/tool/DataTypeHandler.h @@ -68,7 +68,7 @@ class DataTypeHandler static void outputData(std::ostream &, const DataType *, void *, size_t); - static void printRawData(ostream &, const uint8_t *, size_t); + static void printRawData(std::ostream &, const uint8_t *, size_t); private: static const DataType dataTypes[];