From 337e3b8a157210eea33c88361b5e4c45a5efc462 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Mon, 1 Jan 2018 16:46:40 -0800 Subject: [PATCH 1/1] Fix copyright lines for Bits.h and move BitsBenchmark.cpp Summary: [Folly] Fix copyright lines for `Bits.h` and move `BitsBenchmark.cpp`. Reviewed By: spalamarchuk Differential Revision: D6648828 fbshipit-source-id: 5eed558ac2d47a1497d64173bc84a4ca27d79764 --- folly/lang/Bits.h | 2 +- folly/{ => lang}/test/BitsBenchmark.cpp | 2 +- folly/lang/test/BitsTest.cpp | 2 +- folly/test/Makefile.am | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename folly/{ => lang}/test/BitsBenchmark.cpp (98%) diff --git a/folly/lang/Bits.h b/folly/lang/Bits.h index 889b3a0b..b0af3714 100644 --- a/folly/lang/Bits.h +++ b/folly/lang/Bits.h @@ -1,5 +1,5 @@ /* - * Copyright 2017 Facebook, Inc. + * Copyright 2011-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/folly/test/BitsBenchmark.cpp b/folly/lang/test/BitsBenchmark.cpp similarity index 98% rename from folly/test/BitsBenchmark.cpp rename to folly/lang/test/BitsBenchmark.cpp index da0cab43..754cf00d 100644 --- a/folly/test/BitsBenchmark.cpp +++ b/folly/lang/test/BitsBenchmark.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2017 Facebook, Inc. + * Copyright 2016-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/folly/lang/test/BitsTest.cpp b/folly/lang/test/BitsTest.cpp index e2708f8b..2619befd 100644 --- a/folly/lang/test/BitsTest.cpp +++ b/folly/lang/test/BitsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2017 Facebook, Inc. + * Copyright 2011-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 9a47a30b..9fb035f0 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -162,7 +162,7 @@ math_test_SOURCES = MathTest.cpp math_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la TESTS += math_test -bits_test_SOURCES = BitsTest.cpp +bits_test_SOURCES = ../lang/test/BitsTest.cpp bits_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la TESTS += bits_test -- 2.34.1