X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2Ftest%2FPortabilityTest.cpp;h=58d104d940c7eeeb150cf2e9c66831fad79e9d61;hb=bf542c7195297737547173a35fc4fec2fd6bfd17;hp=ae871dc38442acab644bc01c89d5c2531ae960b1;hpb=22afce906d7e98d95f8c45c3301072d9fd891d41;p=folly.git diff --git a/folly/test/PortabilityTest.cpp b/folly/test/PortabilityTest.cpp index ae871dc3..58d104d9 100644 --- a/folly/test/PortabilityTest.cpp +++ b/folly/test/PortabilityTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2014 Facebook, Inc. + * Copyright 2016 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,11 +14,11 @@ * limitations under the License. */ -#include "folly/Portability.h" +#include #include -#include +#include class Base { public: @@ -28,7 +28,7 @@ class Base { class Derived : public Base { public: - virtual 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() @@ -42,4 +42,3 @@ TEST(Portability, Final) { EXPECT_EQ(3, fooBase(p.get())); EXPECT_EQ(3, fooDerived(p.get())); } -