From: Nicholas Ormrod Date: Wed, 29 Oct 2014 19:55:12 +0000 (-0700) Subject: __attribute__s need double underscore X-Git-Tag: v0.22.0~232 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=538cd253ae2576c447c981113577209f4b4438b7;p=folly.git __attribute__s need double underscore Summary: See D1508946 for the rationale behind this lint message. Test Plan: fbconfig -r folly && fbmake dbg Reviewed By: hans@fb.com Subscribers: sdwilsh, fugalh, njormrod, folly-diffs@ FB internal diff: D1644190 Tasks: 5486739 Signature: t1:1644190:1414532704:87d5851f363cf37c58f7e7c3d57c8210a792d4a1 --- diff --git a/folly/wangle/Deprecated.h b/folly/wangle/Deprecated.h index 88d2f0f7..75937b15 100644 --- a/folly/wangle/Deprecated.h +++ b/folly/wangle/Deprecated.h @@ -15,4 +15,4 @@ */ #pragma once -#define DEPRECATED __attribute__((deprecated)) +#define DEPRECATED __attribute__((__deprecated__))