No bug - Put initializer list in the right order to quiet GCC warnings. r=me

This commit is contained in:
Benjamin Peterson 2013-12-26 16:53:21 -06:00
parent 2a1f62f115
commit a1c015d2cc

View File

@ -28,7 +28,7 @@ class FixedList
public:
FixedList()
: length_(0), list_(nullptr)
: list_(nullptr), length_(0)
{ }
// Dynamic memory allocation requires the ability to report failure.