Fix copyright lines
[folly.git] / folly / gen / Core.h
index a403b5bbee265bbb6a0ba0861af0984f8cd2829c..b0bebd4fa7c5e61f7f1e5710e28af73874261fe1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 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
-
-}} // folly::gen
+} // namespace detail
+} // namespace gen
+} // namespace folly
 
 #include <folly/gen/Core-inl.h>
-
-#endif // FOLLY_GEN_CORE_H