Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Berger <mberger@denc.com>2016-11-02 12:54:47 +0300
committerMartijn Berger <mberger@denc.com>2016-11-02 12:56:16 +0300
commit4fdf68271c65e204cd75ec976daf879b0049e1fa (patch)
treedda8a358d1b120e9b439096635d248f3e2f7ea81 /intern/cycles/device/device_cuda.cpp
parent83ebf501cdfdb21a8b111dcaf32481bc021094f0 (diff)
Cycles standalone, compile fix UINT_MAX is not defined in device_cuda.cpp
Diffstat (limited to 'intern/cycles/device/device_cuda.cpp')
-rw-r--r--intern/cycles/device/device_cuda.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index 7f8a0bf2f43..42e9cf75258 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -14,6 +14,7 @@
* limitations under the License.
*/
+#include <climits>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>