include/flatbuffers: typo fixes in comments (#5884)

This commit is contained in:
Even Rouault
2020-05-04 19:21:57 +02:00
committed by GitHub
parent 2e9a196734
commit ff1c78233d
6 changed files with 6 additions and 6 deletions

View File

@@ -190,7 +190,7 @@ inline void vector_emplace_back(std::vector<T> *vector, V &&data) {
// MSVC 2010 doesn't support C++11 aliases.
// We're manually "aliasing" the class here as we want to bring unique_ptr
// into the flatbuffers namespace. We have unique_ptr in the flatbuffers
// namespace we have a completely independent implemenation (see below)
// namespace we have a completely independent implementation (see below)
// for C++98 STL implementations.
template <class T> class unique_ptr : public std::unique_ptr<T> {
public: