From f56e672957b793d486471f1b83d3c1cbd7342e42 Mon Sep 17 00:00:00 2001 From: Justin Luitjens Date: Thu, 5 Dec 2019 19:13:13 -0700 Subject: [PATCH] [src] Add missing #include, needed for CUDA decoder compilation on some platforms (#3759) --- src/cudadecoder/thread-pool.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cudadecoder/thread-pool.h b/src/cudadecoder/thread-pool.h index 12cd27da462..920ea6d3300 100644 --- a/src/cudadecoder/thread-pool.h +++ b/src/cudadecoder/thread-pool.h @@ -28,6 +28,7 @@ freely, subject to the following restrictions: #ifndef KALDI_CUDA_DECODER_THREAD_POOL_H_ #define KALDI_CUDA_DECODER_THREAD_POOL_H_ +#include #include #include #include