From: Yedidya Feldblum Date: Sun, 7 Jan 2018 22:19:17 +0000 (-0800) Subject: Terminal comma for FutexResult enumerators X-Git-Tag: v2018.01.08.00~1 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7462c4c257f640552f3b5f18da178c04cdf61e1f;p=folly.git Terminal comma for FutexResult enumerators Summary: [Folly] Terminal comma for `FutexResult` enumerators. Style nit. Reviewed By: meyering Differential Revision: D6673523 fbshipit-source-id: abf9f4d3e99bf9a6d3042a49252b1b1190e69b9f --- diff --git a/folly/detail/Futex.h b/folly/detail/Futex.h index a87b8299..4bf7ac5b 100644 --- a/folly/detail/Futex.h +++ b/folly/detail/Futex.h @@ -31,7 +31,7 @@ enum class FutexResult { VALUE_CHANGED, /* Futex value didn't match expected */ AWOKEN, /* futex wait matched with a futex wake */ INTERRUPTED, /* Spurious wake-up or signal caused futex wait failure */ - TIMEDOUT + TIMEDOUT, }; /**