Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo committed Dec 8, 2024
1 parent 55cdc5c commit 77c590e
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ class simultaneous_options final {

simultaneous_options(const simultaneous_options&) = delete;

simultaneous_options(void) : detect_key_down_uninterruptedly_(false),
key_down_order_(key_order::insensitive),
key_up_order_(key_order::insensitive),
key_up_when_(key_up_when::any) {
simultaneous_options(void)
: detect_key_down_uninterruptedly_(false),
key_down_order_(key_order::insensitive),
key_up_order_(key_order::insensitive),
key_up_when_(key_up_when::any) {
}

simultaneous_options(const nlohmann::json& json) : simultaneous_options() {
simultaneous_options(const nlohmann::json& json)
: simultaneous_options() {
pqrs::json::requires_object(json, "json");

for (const auto& [key, value] : json.items()) {
Expand Down

0 comments on commit 77c590e

Please sign in to comment.