tiny_obj_loader.h: fix order of variables

This commit is contained in:
Steven Peters
2018-12-13 10:49:18 -08:00
committed by GitHub
parent 546aa09d8d
commit df3bb6f8e8

View File

@@ -435,7 +435,7 @@ struct face_t {
int pad_;
std::vector<vertex_index_t> vertex_indices; // face vertex indices.
face_t() : pad_(0), smoothing_group_id(0) {}
face_t() : smoothing_group_id(0), pad_(0) {}
};
struct line_t {