Skip to content

Commit

Permalink
Fix C++03 compatibility again
Browse files Browse the repository at this point in the history
Same as 73728d7, accidentally removed
space in aebbe22
  • Loading branch information
lukas-w committed Sep 17, 2017
1 parent 70ac7db commit d1aa39b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/MemoryManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ struct MmAllocator
MemoryManager::free( p );
}

typedef std::vector<T, MmAllocator<T>> vector;
typedef std::vector< T, MmAllocator<T> > vector;
};


Expand Down

0 comments on commit d1aa39b

Please sign in to comment.