freebsd-ports/graphics/blender/files/patch-intern_locale_boost__locale__wrapper.cpp
2023-05-26 03:01:08 +03:00

17 lines
517 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>?"
--- intern/locale/boost_locale_wrapper.cpp.orig 2023-02-15 14:56:19 UTC
+++ intern/locale/boost_locale_wrapper.cpp
@@ -10,6 +10,7 @@
#include <stdio.h>
#include "boost_locale_wrapper.h"
+#include <iostream>
static std::string messages_path;
static std::string default_domain;