ref: c52d85442ceb70a6ce74299bcdde249eee032ec1
parent: 5c66f6f5eb96acc8c6f4d371027f407642455fa2
author: Jim Bankoski <[email protected]>
date: Tue Oct 1 11:19:39 EDT 2013
vp9_thread nolintify lint issue I can't fix easily Change-Id: Ib19dabe697656e4d7e8403d91bedca7cd31d36bf
--- a/vp9/decoder/vp9_thread.h
+++ b/vp9/decoder/vp9_thread.h
@@ -27,7 +27,7 @@
#if defined(_WIN32)
-#include <windows.h>
+#include <windows.h> // NOLINT
typedef HANDLE pthread_t;
typedef CRITICAL_SECTION pthread_mutex_t;
typedef struct {
@@ -38,7 +38,7 @@
#else
-#include <pthread.h>
+#include <pthread.h> // NOLINT
#endif /* _WIN32 */
#endif /* CONFIG_MULTITHREAD */