logging: minor clean up in Logger.h
[folly.git] / folly / GroupVarint.cpp
index 54b9a9036ae32dc3cfc74144232100287a2a7b4f..63648e85eb0dd40e74202fb6d6469c80bd896fad 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Facebook, Inc.
+ * Copyright 2017 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,8 +14,9 @@
  * limitations under the License.
  */
 
-#include "folly/GroupVarint.h"
+#include <folly/GroupVarint.h>
 
+#if HAVE_GROUP_VARINT
 namespace folly {
 
 const uint32_t GroupVarint32::kMask[] = {
@@ -28,5 +29,5 @@ const uint64_t GroupVarint64::kMask[] = {
   0xffffffffffffffffULL
 };
 
-}  // namespace folly
-
+} // namespace folly
+#endif