X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2FLifoSem.h;h=32358fcb70e4bd1f6b64221f43de64686dc57fdd;hp=4aa1cc888209479a49d66617e43222a6c8aec8f7;hb=321542683a01c3f334047531e9b487f047129775;hpb=1dee433c3440fe58e046de3b2e59dfd7f1a5cb35 diff --git a/folly/LifoSem.h b/folly/LifoSem.h index 4aa1cc88..32358fcb 100644 --- a/folly/LifoSem.h +++ b/folly/LifoSem.h @@ -1,5 +1,5 @@ /* - * Copyright 2015 Facebook, Inc. + * Copyright 2016 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -323,7 +323,7 @@ struct LifoSemBase { /// Constructor constexpr explicit LifoSemBase(uint32_t initialValue = 0) - : head_(LifoSemHead::fresh(initialValue)) {} + : head_(LifoSemHead::fresh(initialValue)), padding_() {} LifoSemBase(LifoSemBase const&) = delete; LifoSemBase& operator=(LifoSemBase const&) = delete;