diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c09166..6f204e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required (VERSION 3.7) project (mastodon-cpp - VERSION 0.17.0 + VERSION 0.17.1 LANGUAGES CXX ) diff --git a/src/easy/entities/status.cpp b/src/easy/entities/status.cpp index 0bcf877..6bfcfd7 100644 --- a/src/easy/entities/status.cpp +++ b/src/easy/entities/status.cpp @@ -17,7 +17,6 @@ #include #include #include "status.hpp" -#include "macros.hpp" using namespace Mastodon; using Status = Easy::Status; @@ -38,7 +37,6 @@ const Easy::Account Status::account() const return Easy::Account(node.toStyledString()); } - ttdebug << "Could not get data: account\n"; return Easy::Account(); } @@ -50,7 +48,6 @@ const Easy::Application Status::application() const return Easy::Application(node.toStyledString()); } - ttdebug << "Could not get data: application\n"; return Easy::Application(); } @@ -83,7 +80,6 @@ const std::vector Status::emojis() const return vec; } - ttdebug << "Could not get data: emojis\n"; return {}; } @@ -142,7 +138,6 @@ const std::vector Status::media_attachments() const return vec; } - ttdebug << "Could not get data: media_attachments\n"; return {}; } @@ -173,7 +168,6 @@ const std::vector Status::mentions() const return vec; } - ttdebug << "Could not get data: mentions\n"; return {}; } @@ -195,7 +189,6 @@ const Status Status::reblog() const return Easy::Status(node.toStyledString()); } - ttdebug << "Could not get data: reblog\n"; return Easy::Status(); } @@ -244,7 +237,6 @@ const std::vector Status::tags() const return vec; } - ttdebug << "Could not get data: tags\n"; return {}; } @@ -270,7 +262,6 @@ const Easy::visibility_type Status::visibility() const else if (strvisibility.compare("direct") == 0) return visibility_type::Direct; - ttdebug << "Could not get data: visibility\n"; return visibility_type::Undefined; }