Remove some custom test main()'s in folly/experimental/symbolizer/
[folly.git] / folly / MacAddress.cpp
index 2ee684b180d6a99f886325cf18e554072e0a65ec..c806d9b7feb21ca820e892886ce12caaa7be3d56 100644 (file)
@@ -73,9 +73,7 @@ string MacAddress::toString() const {
 
 void MacAddress::parse(StringPiece str) {
   // Helper function to convert a single hex char into an integer
-  auto isSeparatorChar = [](char c) {
-    return c == ':' || c == '-';
-  };
+  auto isSeparatorChar = [](char c) { return c == ':' || c == '-'; };
 
   uint8_t parsed[SIZE];
   auto p = str.begin();