Fix multi-line comment warnings
[folly.git] / folly / test / PortabilityTest.cpp
index 62b255531b9e95c7d83797d8c123d67346b51ab8..923c2391cbdcc46590fbbfce8e9f4113c5dd5a36 100644 (file)
@@ -28,7 +28,7 @@ class Base {
 
 class Derived : public Base {
  public:
-  int foo() const FOLLY_FINAL { return 2; }
+  int foo() const final { return 2; }
 };
 
 // A compiler that supports final will likely inline the call to p->foo()