From c8baf41582feeeaf9d5e67228f2c392d136c2085 Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 22 Feb 2019 11:35:06 +0100 Subject: [PATCH] Renamed macros.hpp to debug.hpp. --- src/api/delete.cpp | 2 +- src/api/get.cpp | 2 +- src/api/get_stream.cpp | 2 +- src/api/patch.cpp | 2 +- src/api/post.cpp | 2 +- src/api/put.cpp | 2 +- src/{macros.hpp => debug.hpp} | 0 src/easy/easy.cpp | 2 +- src/easy/entities/account.cpp | 2 +- src/easy/entities/attachment.cpp | 2 +- src/easy/entities/card.cpp | 2 +- src/easy/entities/context.cpp | 2 +- src/easy/entities/emoji.cpp | 2 +- src/easy/entities/instance.cpp | 2 +- src/easy/entities/notification.cpp | 2 +- src/easy/entities/tag.cpp | 2 +- src/easy/entity.cpp | 2 +- src/easy/simple_calls.cpp | 2 +- src/http.cpp | 2 +- src/mastodon-cpp.cpp | 2 +- 20 files changed, 19 insertions(+), 19 deletions(-) rename src/{macros.hpp => debug.hpp} (100%) diff --git a/src/api/delete.cpp b/src/api/delete.cpp index 1d37fc6..8ce7382 100644 --- a/src/api/delete.cpp +++ b/src/api/delete.cpp @@ -15,7 +15,7 @@ */ #include -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" using namespace Mastodon; diff --git a/src/api/get.cpp b/src/api/get.cpp index aff11da..e81f2f1 100644 --- a/src/api/get.cpp +++ b/src/api/get.cpp @@ -15,7 +15,7 @@ */ #include -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" using namespace Mastodon; diff --git a/src/api/get_stream.cpp b/src/api/get_stream.cpp index 11c360f..9f150bb 100644 --- a/src/api/get_stream.cpp +++ b/src/api/get_stream.cpp @@ -15,7 +15,7 @@ */ #include -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" using namespace Mastodon; diff --git a/src/api/patch.cpp b/src/api/patch.cpp index 982d652..c0fbc81 100644 --- a/src/api/patch.cpp +++ b/src/api/patch.cpp @@ -15,7 +15,7 @@ */ #include -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" using namespace Mastodon; diff --git a/src/api/post.cpp b/src/api/post.cpp index ecaa1eb..2935a1d 100644 --- a/src/api/post.cpp +++ b/src/api/post.cpp @@ -15,7 +15,7 @@ */ #include -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" using namespace Mastodon; diff --git a/src/api/put.cpp b/src/api/put.cpp index 01cf0a4..1608665 100644 --- a/src/api/put.cpp +++ b/src/api/put.cpp @@ -15,7 +15,7 @@ */ #include -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" using namespace Mastodon; diff --git a/src/macros.hpp b/src/debug.hpp similarity index 100% rename from src/macros.hpp rename to src/debug.hpp diff --git a/src/easy/easy.cpp b/src/easy/easy.cpp index 6bc6cdb..4e4e722 100644 --- a/src/easy/easy.cpp +++ b/src/easy/easy.cpp @@ -19,7 +19,7 @@ #include #include #include "easy.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using std::string; diff --git a/src/easy/entities/account.cpp b/src/easy/entities/account.cpp index c51d7ef..3c6feda 100644 --- a/src/easy/entities/account.cpp +++ b/src/easy/entities/account.cpp @@ -16,7 +16,7 @@ #include #include "account.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Account = Easy::Account; diff --git a/src/easy/entities/attachment.cpp b/src/easy/entities/attachment.cpp index 6df29ad..5a7f4dc 100644 --- a/src/easy/entities/attachment.cpp +++ b/src/easy/entities/attachment.cpp @@ -16,7 +16,7 @@ #include #include "attachment.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Attachment = Easy::Attachment; diff --git a/src/easy/entities/card.cpp b/src/easy/entities/card.cpp index 45137c7..615677e 100644 --- a/src/easy/entities/card.cpp +++ b/src/easy/entities/card.cpp @@ -15,7 +15,7 @@ */ #include "card.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Card = Easy::Card; diff --git a/src/easy/entities/context.cpp b/src/easy/entities/context.cpp index 6cef62b..0303720 100644 --- a/src/easy/entities/context.cpp +++ b/src/easy/entities/context.cpp @@ -15,7 +15,7 @@ */ #include "context.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Context = Easy::Context; diff --git a/src/easy/entities/emoji.cpp b/src/easy/entities/emoji.cpp index ed27b9d..44049b1 100644 --- a/src/easy/entities/emoji.cpp +++ b/src/easy/entities/emoji.cpp @@ -15,7 +15,7 @@ */ #include "emoji.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Emoji = Easy::Emoji; diff --git a/src/easy/entities/instance.cpp b/src/easy/entities/instance.cpp index 5129b78..bd2045d 100644 --- a/src/easy/entities/instance.cpp +++ b/src/easy/entities/instance.cpp @@ -17,7 +17,7 @@ #include #include "instance.hpp" #include "account.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Instance = Easy::Instance; diff --git a/src/easy/entities/notification.cpp b/src/easy/entities/notification.cpp index 6a929db..eec08e0 100644 --- a/src/easy/entities/notification.cpp +++ b/src/easy/entities/notification.cpp @@ -15,7 +15,7 @@ */ #include "notification.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Notification = Easy::Notification; diff --git a/src/easy/entities/tag.cpp b/src/easy/entities/tag.cpp index 0346279..03d5772 100644 --- a/src/easy/entities/tag.cpp +++ b/src/easy/entities/tag.cpp @@ -17,7 +17,7 @@ #include #include #include "tag.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using Tag = Easy::Tag; diff --git a/src/easy/entity.cpp b/src/easy/entity.cpp index 6b2e3b0..c81bb24 100644 --- a/src/easy/entity.cpp +++ b/src/easy/entity.cpp @@ -20,7 +20,7 @@ #include #include #include "easy.hpp" -#include "macros.hpp" +#include "debug.hpp" using namespace Mastodon; using std::string; diff --git a/src/easy/simple_calls.cpp b/src/easy/simple_calls.cpp index 6c916fe..9950f8a 100644 --- a/src/easy/simple_calls.cpp +++ b/src/easy/simple_calls.cpp @@ -16,7 +16,7 @@ #include #include "easy.hpp" -#include "macros.hpp" +#include "debug.hpp" #include "easy/entities/status.hpp" #include "easy/entities/attachment.hpp" #include "easy/entities/notification.hpp" diff --git a/src/http.cpp b/src/http.cpp index b9f995f..cd82f47 100644 --- a/src/http.cpp +++ b/src/http.cpp @@ -22,7 +22,7 @@ #include #include #include -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" using namespace Mastodon; diff --git a/src/mastodon-cpp.cpp b/src/mastodon-cpp.cpp index 8e0dcfe..a59c971 100644 --- a/src/mastodon-cpp.cpp +++ b/src/mastodon-cpp.cpp @@ -20,7 +20,7 @@ #include #include #include "version.hpp" -#include "macros.hpp" +#include "debug.hpp" #include "mastodon-cpp.hpp" #include