Skip to content

Commit

Permalink
draco: Fix a couple comment typos in float_points_tree_decoder.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomfinegan committed Sep 6, 2019
1 parent 967e839 commit 9fa96af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class FloatPointsTreeDecoder {
#ifndef DRACO_OLD_GCC
template <class OutputIteratorT>
bool DecodePointCloud(DecoderBuffer *buffer, OutputIteratorT &&out);
#endif // BUILD_OLD_GCC
#endif // DRACO_OLD_GCC

// Initializes a DecoderBuffer from |data|, and calls function above.
template <class OutputIteratorT>
Expand Down Expand Up @@ -85,7 +85,7 @@ bool FloatPointsTreeDecoder::DecodePointCloud(DecoderBuffer *buffer,
OutputIteratorT local = std::forward<OutputIteratorT>(out);
return DecodePointCloud(buffer, local);
}
#endif // BUILD_OLD_GCC
#endif // DRACO_OLD_GCC

template <class OutputIteratorT>
bool FloatPointsTreeDecoder::DecodePointCloud(DecoderBuffer *buffer,
Expand Down

0 comments on commit 9fa96af

Please sign in to comment.