From 43fd2aae6e279aab4cf9610025d8ea0dbcfe2689 Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 30 Mar 2019 20:53:53 +0100 Subject: [PATCH] Changed debug.hpp to respect 80 char rule. --- src/debug.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/debug.hpp b/src/debug.hpp index 29ef058..7e18b89 100644 --- a/src/debug.hpp +++ b/src/debug.hpp @@ -1,6 +1,6 @@ /* This file is part of mastodon-cpp. - * Copyright © 2018 tastytea - * + * Copyright © 2018, 2019 tastytea + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. @@ -20,7 +20,8 @@ #include #ifdef DEBUG - #define ttdebug std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] DEBUG: " + #define ttdebug \ + std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] DEBUG: " #else #define ttdebug false && std::cerr #endif