Cleanup: Make format

Formatting changes resulting from Make Format
This commit is contained in:
Harley Acheson 2023-08-16 14:15:54 -07:00
parent 84718feb4b
commit 0e977a38bc
6 changed files with 13 additions and 11 deletions

@ -27,4 +27,4 @@ void CPPType::print_or_default(const void *value,
}
}
} // namespace blender
} // namespace blender

@ -14,4 +14,4 @@ std::ostream &operator<<(std::ostream &stream, IndexRange range)
return stream;
}
} // namespace blender
} // namespace blender

@ -42,4 +42,4 @@ std::ostream &operator<<(std::ostream &stream, const CartesianBasis &rot)
return stream << "CartesianBasis" << rot.axes;
}
} // namespace blender::math
} // namespace blender::math

@ -20,4 +20,4 @@ std::ostream &operator<<(std::ostream &stream, StringRefNull ref)
return stream;
}
}
} // namespace blender

@ -8,11 +8,11 @@
#include <iostream>
void blender::internal::vector_print_stats(StringRef name,
void *address,
int64_t size,
int64_t capacity,
int64_t inlineCapacity,
int64_t memorySize)
void *address,
int64_t size,
int64_t capacity,
int64_t inlineCapacity,
int64_t memorySize)
{
std::cout << "Vector Stats: " << name << "\n";
std::cout << " Address: " << address << "\n";

@ -523,12 +523,14 @@ typedef struct GreasePencil {
const blender::bke::greasepencil::Layer *layer, int frame_number) const;
void foreach_visible_drawing(
const int frame, blender::FunctionRef<void(int, blender::bke::greasepencil::Drawing &)> function);
const int frame,
blender::FunctionRef<void(int, blender::bke::greasepencil::Drawing &)> function);
void foreach_visible_drawing(
const int frame,
blender::FunctionRef<void(int, const blender::bke::greasepencil::Drawing &)> function) const;
void foreach_editable_drawing(
const int frame, blender::FunctionRef<void(int, blender::bke::greasepencil::Drawing &)> function);
const int frame,
blender::FunctionRef<void(int, blender::bke::greasepencil::Drawing &)> function);
std::optional<blender::Bounds<blender::float3>> bounds_min_max() const;