mirror of
https://github.com/nlohmann/json
synced 2024-11-22 12:00:05 +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");
|
|
}
|