summaryrefslogtreecommitdiff
path: root/media-gfx/blender/files/blender-3.3.0-fix-build-with-boost-1.81.patch
blob: 3a544811e48495f8d380f8de7a1eb4a080c4ddbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
https://bugs.gentoo.org/887059

Adding include as suggested by the compiler:

"intern/locale/boost_locale_wrapper.cpp:12:1: note: ‘std::cout’ is defined 
in header ‘<iostream>’; did you forget to ‘#include <iostream>’?"

--- a/intern/locale/boost_locale_wrapper.cpp
+++ b/intern/locale/boost_locale_wrapper.cpp
@@ -9,6 +9,7 @@
 #include <stdio.h>
 
 #include "boost_locale_wrapper.h"
+#include <iostream>
 
 static std::string messages_path;
 static std::string default_domain;