Skip to content
Snippets Groups Projects
Unverified Commit ed0caad5 authored by Sebastian Schmitt's avatar Sebastian Schmitt Committed by GitHub
Browse files

bump packaged nlohman/json dependency to v3.9.1 (#1223)

parent 2abce665
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,7 @@ bench_params read_options(int argc, char** argv) {
}
nlohmann::json json;
json << f;
f >> json;
param_from_json(params.name, "name", json);
param_from_json(params.num_cells, "num-cells", json);
......
......@@ -292,7 +292,7 @@ run_params read_options(int argc, char** argv) {
}
nlohmann::json json;
json << f;
f >> json;
param_from_json(params.name, "name", json);
param_from_json(params.dry_run, "dry-run", json);
......
......@@ -352,7 +352,7 @@ gap_params read_options(int argc, char** argv) {
}
nlohmann::json json;
json << f;
f >> json;
param_from_json(params.name, "name", json);
param_from_json(params.n_cables, "n-cables", json);
......
......@@ -286,7 +286,7 @@ ring_params read_options(int argc, char** argv) {
}
nlohmann::json json;
json << f;
f >> json;
param_from_json(params.name, "name", json);
param_from_json(params.num_cells, "num-cells", json);
......
The library is licensed under the MIT License
<http://opensource.org/licenses/MIT>:
MIT License
Copyright (c) 2013-2015 Niels Lohmann
Copyright (c) 2013-2020 Niels Lohmann
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
......
This diff is collapsed.
This diff is collapsed.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment