Add missing limits include

Without limits included, several CUDA related files fail to compile with
GCC on Ubuntu:

modules/cudaimgproc/src/hough_lines.cpp:136:9: error: ‘numeric_limits’ is not a member of ‘std’
This commit is contained in:
Michael Pratt 2013-11-12 21:40:39 -05:00 committed by arc
parent f461930d07
commit 73f1940b03

@ -59,4 +59,6 @@
# include "opencv2/cudafilters.hpp"
#endif
#include <limits>
#endif /* __OPENCV_PRECOMP_H__ */