1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/graphics/blender/files/patch-intern_itasc_kdl_tree.hpp
Marcus von Appen 1302a0b7cf - Update to version 2.77a
- Switch to SDL2 as dependency, if the SDL option is set. Blender's
  dependency detection favours SDL2 over SDL
- Fix some missing LIB_DEPENDS
- Make boost a default dependency for Blender. Too many optional
  features depend on it
- Include the libc++ 3.8.0 fix from PR 209614

Blender 2.77 comes with hundreds of bug fixes and many new features,
such as

* improved subsurface scattering and GPU support for cycles
* improved sculpting workflows
* better antialiasing for OpenGL renderers in the UI
* speedups for the gaussian blur effect in the sequencer
* improved weight-painting behaviour
* and many more

Changelog: https://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.77
2016-07-29 12:52:01 +00:00

12 lines
560 B
C++

--- intern/itasc/kdl/tree.hpp.orig 2016-07-25 09:36:50 UTC
+++ intern/itasc/kdl/tree.hpp
@@ -34,7 +34,7 @@
//Forward declaration
class TreeElement;
// Eigen allocator is needed for alignment of Eigen data types
- typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
+ typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
class TreeElement
{