From 75c321929be906c1d06bf07b3d533b134f3c3dc1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EA=B9=80=EC=88=98=EC=A7=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Thu, 6 Dec 2018 09:21:33 +0900 Subject: [PATCH] [neurun] Fix wrong ifdef guard in Sink (#3883) This commit fixes wrong ifdef guard in `Sink`. Signed-off-by: sjsujinkim --- runtimes/neurun/src/exec/Sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/neurun/src/exec/Sink.h b/runtimes/neurun/src/exec/Sink.h index c18fa6a..d39c37d 100644 --- a/runtimes/neurun/src/exec/Sink.h +++ b/runtimes/neurun/src/exec/Sink.h @@ -160,4 +160,4 @@ private: } // namespace exec } // namespace neurun -#endif // __INTERNAL_SINK_H__ +#endif // __NEURUN_EXEC_SINK_H__ -- 2.7.4