openFrameworks icon indicating copy to clipboard operation
openFrameworks copied to clipboard

int to std::size_t to match ofMatrix4x4

Open dimitre opened this issue 2 years ago • 0 comments

and it fixes some more strict compiler warnings "Implicit conversion loses integer precision:" And some space to tabs fix.

Let me know if it is best to make different PRs for readability only changed code was this lines

	float& operator[]( std::size_t n ){
	float operator[]( std::size_t n ) const {

instead of

```c++
	float& operator[]( int n ){
	float operator[]( int n ) const {

dimitre avatar Dec 26 '21 15:12 dimitre