mirror of
https://github.com/nlohmann/json.git
synced 2026-07-08 11:35:10 +00:00
b21c345179
* 🦃 move files * 🦃 rename doc folder to docs * 🦃 rename test folder to tests
12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
#include <nlohmann/json.hpp>
|
|
|
|
int main()
|
|
{
|
|
nlohmann::ordered_json json = {"Test"};
|
|
json.dump();
|
|
|
|
// regression for #3013 (ordered_json::reset() compile error with nvcc)
|
|
nlohmann::ordered_json metadata;
|
|
metadata.erase("key");
|
|
}
|