diff options
Diffstat (limited to 'protocols/FacebookRM/src/definitions.h')
-rw-r--r-- | protocols/FacebookRM/src/definitions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/FacebookRM/src/definitions.h b/protocols/FacebookRM/src/definitions.h index 8e33793d68..3de244779f 100644 --- a/protocols/FacebookRM/src/definitions.h +++ b/protocols/FacebookRM/src/definitions.h @@ -25,11 +25,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define CODE_BLOCK_BEGIN {
#define CODE_BLOCK_TRY try {
#define CODE_BLOCK_CATCH } catch(const std::exception &e) {
-#define CODE_BLOCK_INFINITE while( true ) {
+#define CODE_BLOCK_INFINITE while(true) {
#define CODE_BLOCK_END }
-#define FLAG_CONTAINS(x,y) ( ( x & y ) == y )
-#define REMOVE_FLAG(x,y) ( x = ( x & ~y ))
+#define FLAG_CONTAINS(x,y) ((x & y) == y)
+#define REMOVE_FLAG(x,y) (x = (x & ~y))
#define LOG Log
|