From 7462c4c257f640552f3b5f18da178c04cdf61e1f Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Sun, 7 Jan 2018 14:19:17 -0800 Subject: [PATCH] Terminal comma for FutexResult enumerators Summary: [Folly] Terminal comma for `FutexResult` enumerators. Style nit. Reviewed By: meyering Differential Revision: D6673523 fbshipit-source-id: abf9f4d3e99bf9a6d3042a49252b1b1190e69b9f --- folly/detail/Futex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }; /** -- 2.34.1