Blender Git Commit Log

Git Commits -> Revision f0c164b

July 22, 2019, 15:17 (GMT)
rename SmallVector to Vector

Commit Details:

Full Hash: f0c164b861430b3a9f7e7dbb3f367085ef58b16f
Parent Commit: a1ba330
Lines Changed: +1146, -1148

2 Added Paths:

/source/blender/blenlib/BLI_vector.hpp (+569, -0) (View)
/tests/gtests/blenlib/BLI_vector_test.cc (+339, -0) (View)

2 Deleted Paths:

/source/blender/blenlib/BLI_small_vector.hpp (+0, -569)
/tests/gtests/blenlib/BLI_small_vector_test.cc (+0, -339)

60 Modified Paths:

/source/blender/blenkernel/BKE_node_tree.hpp (+11, -13) (Diff)
/source/blender/blenkernel/intern/node_tree.cpp (+10, -10) (Diff)
/source/blender/blenlib/BLI_array_allocator.hpp (+5, -5) (Diff)
/source/blender/blenlib/BLI_array_lookup.hpp (+4, -4) (Diff)
/source/blender/blenlib/BLI_chained_strings.hpp (+2, -2) (Diff)
/source/blender/blenlib/BLI_map.hpp (+3, -3) (Diff)
/source/blender/blenlib/BLI_mempool.hpp (+1, -1) (Diff)
/source/blender/blenlib/BLI_monotonic_allocator.hpp (+2, -2) (Diff)
/source/blender/blenlib/BLI_multimap.hpp (+1, -1) (Diff)
/source/blender/blenlib/BLI_object_pool.hpp (+1, -1) (Diff)
/source/blender/blenlib/BLI_range.hpp (+3, -3) (Diff)
/source/blender/blenlib/BLI_set.hpp (+5, -5) (Diff)
/source/blender/blenlib/BLI_set_vector.hpp (+1, -1) (Diff)
/source/blender/blenlib/BLI_stack.hpp (+2, -2) (Diff)
/source/blender/blenlib/CMakeLists.txt (+1, -1) (Diff)
/source/blender/functions/backends/dependencies/fgraph_dependencies.cpp (+2, -2) (Diff)
/source/blender/functions/backends/llvm/builder.hpp (+3, -3) (Diff)
/source/blender/functions/backends/llvm/fgraph_ir_generation.cpp (+1, -1) (Diff)
/source/blender/functions/backends/llvm/llvm_types.cpp (+1, -1) (Diff)
/source/blender/functions/backends/llvm/llvm_types.hpp (+1, -1) (Diff)
/source/blender/functions/backends/tuple/tuple.hpp (+3, -3) (Diff)
/source/blender/functions/backends/tuple_call/fgraph_tuple_call.cpp (+3, -3) (Diff)
/source/blender/functions/backends/tuple_call/tuple_call.cpp (+2, -2) (Diff)
/source/blender/functions/backends/tuple_call/tuple_call.hpp (+3, -3) (Diff)
/source/blender/functions/core/data_flow_graph.cpp (+1, -1) (Diff)
/source/blender/functions/core/data_flow_graph.hpp (+6, -6) (Diff)
/source/blender/functions/core/data_flow_graph_builder.cpp (+4, -4) (Diff)
/source/blender/functions/core/data_flow_graph_builder.hpp (+3, -3) (Diff)
/source/blender/functions/core/function.hpp (+14, -14) (Diff)
/source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp (+2, -2) (Diff)
/source/blender/functions/frontends/data_flow_nodes/inserters.cpp (+9, -9) (Diff)
/source/blender/functions/frontends/data_flow_nodes/inserters/nodes.cpp (+2, -2) (Diff)
/source/blender/functions/functions/auto_vectorization.cpp (+15, -15) (Diff)
/source/blender/functions/functions/switch.cpp (+2, -2) (Diff)
/source/blender/functions/types/lists.hpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/actions.cpp (+4, -4) (Diff)
/source/blender/simulations/bparticles/action_interface.hpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/attributes.cpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/attributes.hpp (+10, -10) (Diff)
/source/blender/simulations/bparticles/c_wrapper.cpp (+10, -10) (Diff)
/source/blender/simulations/bparticles/emitters.cpp (+9, -9) (Diff)
/source/blender/simulations/bparticles/events.cpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/inserters.cpp (+4, -4) (Diff)
/source/blender/simulations/bparticles/integrator.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/offset_handlers.cpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/particles_container.cpp (+12, -12) (Diff)
/source/blender/simulations/bparticles/particles_container.hpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/particle_allocator.cpp (+5, -5) (Diff)
/source/blender/simulations/bparticles/particle_allocator.hpp (+4, -4) (Diff)
/source/blender/simulations/bparticles/particle_set.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/simulate.cpp (+16, -16) (Diff)
/source/blender/simulations/bparticles/step_description.hpp (+6, -6) (Diff)
/source/blender/simulations/bparticles/step_description_interfaces.cpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/step_description_interfaces.hpp (+4, -4) (Diff)
/tests/gtests/blenlib/BLI_array_ref_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_multimap_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_range_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_set_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_string_ref_test.cc (+3, -3) (Diff)
/tests/gtests/blenlib/CMakeLists.txt (+1, -1) (Diff)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021