Fix mismatched tag warning (#586)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 11 Jul 2018 23:11:10 +0000 (08:11 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Wed, 11 Jul 2018 23:11:10 +0000 (08:11 +0900)
This commit fixes mismatched tag warning (clang 7.0 reports).

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
libs/core/include/nncc/core/ADT/tensor/TextFormatted.h

index 261deca..dd4277a 100644 (file)
@@ -10,7 +10,7 @@ namespace ADT
 namespace tensor
 {
 
-template <typename T> struct TextFormatted;
+template <typename T> class TextFormatted;
 
 template <typename T> TextFormatted<T> txtfmt(const T &obj) { return TextFormatted<T>{obj}; }