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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-11-15 01:51:17 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-11-15 10:43:56 +0400
commitac21db957a6c2f2723752c6a30734f06b0a667e3 (patch)
treeea3bd2a9820a01b2b6b74360732044ddead70766 /intern/locale/msgfmt.cc
parentefd518b3795e4548fcd6ca849c81ccd17eb6dbe8 (diff)
Add functional and cctype headers to msgfmt.cc
Fixes compilation with MSVC compilers. Patch by leszekswirski (Lech Swirski) with some own tweaks. Differential Revision: http://developer.blender.org/D2
Diffstat (limited to 'intern/locale/msgfmt.cc')
-rw-r--r--intern/locale/msgfmt.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/locale/msgfmt.cc b/intern/locale/msgfmt.cc
index 312e4728973..17720adfa48 100644
--- a/intern/locale/msgfmt.cc
+++ b/intern/locale/msgfmt.cc
@@ -14,7 +14,9 @@
// Usage: msgfmt input.po output.po
#include <algorithm>
+#include <cctype>
#include <fstream>
+#include <functional>
#include <iostream>
#include <map>
#include <stdlib.h>