From: Jim Bankoski Date: Sun, 29 Sep 2013 18:49:52 +0000 (-0700) Subject: cpplint issues vp9_thread.h X-Git-Tag: v1.3.0~371^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da17ffa937cb6274b4f96285e3f92faf90aab9cf;p=libvpx cpplint issues vp9_thread.h apparently we are going to have trouble completely removing lint issue in this file. It needs a bit more work. We need to include vpx_config.h to know whether we need to have multi threading . and that means vpx_config.h has to come before the system headers. ( a violation ) Change-Id: I023feeab1bf5643b79dccc3b80a4a9ad42689e7b Signed-off-by: Jim Bankoski --- diff --git a/vp9/decoder/vp9_thread.h b/vp9/decoder/vp9_thread.h index a8f7e046a..0b5eca073 100644 --- a/vp9/decoder/vp9_thread.h +++ b/vp9/decoder/vp9_thread.h @@ -17,7 +17,7 @@ #ifndef VP9_DECODER_VP9_THREAD_H_ #define VP9_DECODER_VP9_THREAD_H_ -#include "vpx_config.h" +#include "./vpx_config.h" #if defined(__cplusplus) || defined(c_plusplus) extern "C" { @@ -90,4 +90,4 @@ void vp9_worker_end(VP9Worker* const worker); } // extern "C" #endif -#endif /* VP9_DECODER_VP9_THREAD_H_ */ +#endif // VP9_DECODER_VP9_THREAD_H_