Fix copyright lines
[folly.git] / folly / gen / Core.h
index d470199cf3724c985b889e6f8e83458f7a4c8dd3..b0bebd4fa7c5e61f7f1e5710e28af73874261fe1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Facebook, Inc.
+ * Copyright 2014-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.
  * limitations under the License.
  */
 
-#ifndef FOLLY_GEN_CORE_H
-#define FOLLY_GEN_CORE_H
+#pragma once
+#define FOLLY_GEN_CORE_H_
 
-namespace folly { namespace gen {
+namespace folly {
+namespace gen {
 
-template<class Value, class Self>
+template <class Value, class Self>
 class GenImpl;
 
-template<class Self>
+template <class Self>
 class Operator;
 
 namespace detail {
 
-template<class Self>
+template <class Self>
 struct FBounded;
 
-template<class First, class Second>
+template <class First, class Second>
 class Composed;
 
-template<class Value, class First, class Second>
+template <class Value, class First, class Second>
 class Chain;
 
-} // detail
+} // namespace detail
+} // namespace gen
+} // namespace folly
 
-}} // folly::gen
-
-#include "folly/gen/Core-inl.h"
-
-#endif // FOLLY_GEN_CORE_H
+#include <folly/gen/Core-inl.h>