Copyright 2014->2015
[folly.git] / folly / gen / test / StringTest.cpp
index d6bb7122e6aec85fd463d9ad54ab3b2b013e7d07..9aea442a9c653ebd5858636c4df5ca90f2b6d217 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Facebook, Inc.
+ * Copyright 2015 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -275,7 +275,7 @@ void checkResplitMaxLength(vector<string> ins,
   splitter.flush();
 
   EXPECT_EQ(outs.size(), pieces.size());
-  for (int i = 0; i < outs.size(); ++i) {
+  for (size_t i = 0; i < outs.size(); ++i) {
     EXPECT_EQ(outs[i], pieces[i]);
   }