X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FAtomicHashArray.h;h=42f565606f1fd77eaa0b73e2969199e58093d36f;hb=3cdd3857fbfacd9312a23214f54a47f156726927;hp=433ce30c56a611d771e313964ab4befa12951474;hpb=a1614feea3f3c0beb75fb2dc43ec45b3e5d57223;p=folly.git diff --git a/folly/AtomicHashArray.h b/folly/AtomicHashArray.h index 433ce30c..42f56560 100644 --- a/folly/AtomicHashArray.h +++ b/folly/AtomicHashArray.h @@ -1,5 +1,5 @@ /* - * Copyright 2015 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. @@ -16,8 +16,8 @@ /** * AtomicHashArray is the building block for AtomicHashMap. It provides the - * core lock-free functionality, but is limitted by the fact that it cannot - * grow past it's initialization size and is a little more awkward (no public + * core lock-free functionality, but is limited by the fact that it cannot + * grow past its initialization size and is a little more awkward (no public * constructor, for example). If you're confident that you won't run out of * space, don't mind the awkardness, and really need bare-metal performance, * feel free to use AHA directly. @@ -29,7 +29,7 @@ * @author Jordan DeLong */ -#ifndef FOLLY_ATOMICHASHARRAY_H_ +#pragma once #define FOLLY_ATOMICHASHARRAY_H_ #include @@ -429,5 +429,3 @@ friend class AtomicHashMap - -#endif // FOLLY_ATOMICHASHARRAY_H_