X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2FLikely.h;h=5c7da5e48859dd6a4d4ca0668b4d84ee64f73cee;hp=c535e8aefac9a0aa6934d1404a84ae4fbbbaac32;hb=314c43c4f95dc51f2c97d00216be062eebbd5454;hpb=27494a20393fa45072e7d526d358835f3abe312a diff --git a/folly/Likely.h b/folly/Likely.h index c535e8ae..5c7da5e4 100644 --- a/folly/Likely.h +++ b/folly/Likely.h @@ -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. @@ -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_ */ -