X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FLikely.h;h=5c7da5e48859dd6a4d4ca0668b4d84ee64f73cee;hb=a1d62691af2d6c77deeba925cfd0e8172f1d106c;hp=09fb993653c4f7dfad1807ff6cc49f6a39e0f1f6;hpb=5c77fedbef46995a71ffa268c9fcaf49efddd01b;p=folly.git diff --git a/folly/Likely.h b/folly/Likely.h index 09fb9936..5c7da5e4 100644 --- a/folly/Likely.h +++ b/folly/Likely.h @@ -1,5 +1,5 @@ /* - * Copyright 2013 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. @@ -21,8 +21,7 @@ * @author Tudor Bosman (tudorb@fb.com) */ -#ifndef FOLLY_BASE_LIKELY_H_ -#define FOLLY_BASE_LIKELY_H_ +#pragma once #undef LIKELY #undef UNLIKELY @@ -34,6 +33,3 @@ #define LIKELY(x) (x) #define UNLIKELY(x) (x) #endif - -#endif /* FOLLY_BASE_LIKELY_H_ */ -