]> granicus.if.org Git - libvpx/commitdiff
vp9_thread nolintify lint issue I can't fix easily
authorJim Bankoski <jimbankoski@google.com>
Tue, 1 Oct 2013 22:19:39 +0000 (15:19 -0700)
committerJim Bankoski <jimbankoski@google.com>
Tue, 1 Oct 2013 22:19:39 +0000 (15:19 -0700)
Change-Id: Ib19dabe697656e4d7e8403d91bedca7cd31d36bf

vp9/decoder/vp9_thread.h

index 0b5eca073f777265cf3ffeec394656c5f77fdc61..e5e6f606b87ec7b8c867faf0d55d2e9a2b09a3f1 100644 (file)
@@ -27,7 +27,7 @@ extern "C" {
 
 #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 @@ typedef struct {
 
 #else
 
-#include <pthread.h>
+#include <pthread.h> // NOLINT
 
 #endif    /* _WIN32 */
 #endif    /* CONFIG_MULTITHREAD */