clang-format v5.0.0 vpx_util/vpx_atomic.h

Allow*OnASingleLine appears to no longer apply to
typedef structs.

Change-Id: If10db1c30c74ee31dad1a0b1926964e850f15fd2
This commit is contained in:
Johann 2018-01-11 15:17:29 -08:00
parent fd7de8362d
commit b4fb99220b

View File

@ -68,7 +68,9 @@ extern "C" {
// on any platform (to discourage programmer errors by setting values directly).
// This primitive MUST be initialized using vpx_atomic_init or VPX_ATOMIC_INIT
// (NOT memset) and accessed through vpx_atomic_ functions.
typedef struct vpx_atomic_int { volatile int value; } vpx_atomic_int;
typedef struct vpx_atomic_int {
volatile int value;
} vpx_atomic_int;
#define VPX_ATOMIC_INIT(num) \
{ num }