Add missing include of <limits>
authorSimon Richter <Simon.Richter@hogyros.de>
Wed, 15 May 2013 17:39:58 +0000 (19:39 +0200)
committerZhigang Gong <zhigang.gong@linux.intel.com>
Fri, 17 May 2013 06:18:05 +0000 (14:18 +0800)
For std::numeric_limits<T>, the <limits> header is required.

Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
backend/src/sys/alloc.hpp

index 52a37a2..8fcb3a7 100644 (file)
@@ -27,6 +27,7 @@
 #include "sys/platform.hpp"
 #include "sys/assert.hpp"
 #include <algorithm>
+#include <limits>
 
 namespace gbe
 {