[Bf-blender-cvs] [79837c5ed4b] master: Fix building with boost >= 1.81

Sebastian Parborg noreply at git.blender.org
Wed Jan 4 15:24:41 CET 2023


Commit: 79837c5ed4b57925bf6c6bb9e7c2248f6f52bbb0
Author: Sebastian Parborg
Date:   Wed Jan 4 15:23:26 2023 +0100
Branches: master
https://developer.blender.org/rB79837c5ed4b57925bf6c6bb9e7c2248f6f52bbb0

Fix building with boost >= 1.81

In boost 1.81 they no longer implicitly include <iostream> anymore.

===================================================================

M	intern/locale/boost_locale_wrapper.cpp

===================================================================

diff --git a/intern/locale/boost_locale_wrapper.cpp b/intern/locale/boost_locale_wrapper.cpp
index fb0e194352a..80e8d89799a 100644
--- a/intern/locale/boost_locale_wrapper.cpp
+++ b/intern/locale/boost_locale_wrapper.cpp
@@ -6,6 +6,7 @@
  */
 
 #include <boost/locale.hpp>
+#include <iostream>
 #include <stdio.h>
 
 #include "boost_locale_wrapper.h"



More information about the Bf-blender-cvs mailing list