Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix no newline at end of file #72

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/clap/helpers/checking-level.hh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ namespace clap { namespace helpers {
Minimal,
Maximal,
};
}} // namespace clap::helpers
}} // namespace clap::helpers
2 changes: 1 addition & 1 deletion include/clap/helpers/misbehaviour-handler.hh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ namespace clap { namespace helpers {
Ignore,
Terminate,
};
}} // namespace clap::helpers
}} // namespace clap::helpers
2 changes: 1 addition & 1 deletion include/clap/helpers/param-queue.hh
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ namespace clap { namespace helpers {
std::atomic<int> _writeOffset = {0};
std::atomic<int> _readOffset = {0};
};
}} // namespace clap::helpers
}} // namespace clap::helpers
2 changes: 1 addition & 1 deletion include/clap/helpers/preset-discovery-indexer.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ namespace clap { namespace helpers {
auto &self = from(indexer);
return self.extension(id);
}
}} // namespace clap::helpers
}} // namespace clap::helpers
2 changes: 1 addition & 1 deletion include/clap/helpers/reducing-param-queue.hh
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ namespace clap { namespace helpers {
std::atomic<queue_type *> _producer = nullptr;
std::atomic<queue_type *> _consumer = nullptr;
};
}} // namespace clap::helpers
}} // namespace clap::helpers
2 changes: 1 addition & 1 deletion include/clap/helpers/reducing-param-queue.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ namespace clap { namespace helpers {
_free = _consumer.load();
_consumer = nullptr;
}
}} // namespace clap::helpers
}} // namespace clap::helpers
2 changes: 1 addition & 1 deletion include/clap/helpers/version-check.hh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ static_assert(false, "Clap version must be at least 1.2.0")

#if CLAP_VERSION_GE(2,0,0)
static_assert(false, "Clap version must be at most 1.x")
#endif
#endif
2 changes: 1 addition & 1 deletion tests/create-an-actual-plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ CATCH_TEST_CASE("Create an Actual Plugin")
{
CATCH_REQUIRE(std::is_constructible<test_plugin, const clap_host *>::value);
}
}
}
2 changes: 1 addition & 1 deletion tests/event-list-tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ namespace {
CATCH_CHECK(ev->buffer[i] == i);
}

} // namespace
} // namespace
2 changes: 1 addition & 1 deletion tests/hex-encoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ namespace {
CATCH_TEST_CASE("hex decoder - bad length") {
CATCH_CHECK_THROWS(clap::helpers::hex_decode("f3d"));
}
} // namespace
} // namespace
2 changes: 1 addition & 1 deletion tests/main.cc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#define CATCH_CONFIG_MAIN
#include <catch2/catch_all.hpp>
#include <catch2/catch_all.hpp>
2 changes: 1 addition & 1 deletion tests/param-queue-tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ namespace {
CATCH_CHECK(!failed);
}

} // namespace
} // namespace
2 changes: 1 addition & 1 deletion tests/plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ CATCH_TEST_CASE("Plugin - Link") {
clap::helpers::CheckingLevel::None> *p2 = nullptr;
clap::helpers::Plugin<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal> *p3 = nullptr;
}
}
2 changes: 1 addition & 1 deletion tests/preset-discovery-indexer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ CATCH_TEST_CASE("PresetDiscoveryIndexer - Link") {
clap::helpers::CheckingLevel::None> *p2 = nullptr;
clap::helpers::PresetDiscoveryIndexer<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal> *p3 = nullptr;
}
}
2 changes: 1 addition & 1 deletion tests/preset-discovery-metadata-receiver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ CATCH_TEST_CASE("PresetDiscoveryMetadataReceiver - Link") {
clap::helpers::PresetDiscoveryMetadataReceiver<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal> *p3 =
nullptr;
}
}
2 changes: 1 addition & 1 deletion tests/preset-discovery-provider.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ CATCH_TEST_CASE("PresetDiscoveryProvider - Link") {
clap::helpers::CheckingLevel::None> *p2 = nullptr;
clap::helpers::PresetDiscoveryProvider<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal> *p3 = nullptr;
}
}
Loading