[pepper-str] Fix "unused parameter" warning in CI (#7075)
author윤현식/On-Device Lab(SR)/Principal Engineer/삼성전자 <hyunsik.yoon@samsung.com>
Sun, 1 Sep 2019 23:02:26 +0000 (08:02 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Sun, 1 Sep 2019 23:02:26 +0000 (08:02 +0900)
This fix "unused parameter" warning in CI.

Signed-off-by: Hyun Sik Yoon <hyunsik.yoon@samsung.com>
compiler/pepper-str/include/pepper/str.h

index 0ddacb5..efbc3a9 100644 (file)
@@ -29,7 +29,7 @@ namespace details
 
 template <typename... Arg> void str_impl(std::ostream &os, Arg &&... args);
 
-template <> inline void str_impl(std::ostream &os)
+template <> inline void str_impl(std::ostream &)
 {
   // DO NOTHING
   return;