* 👷 add step for NVCC build #2676 * 🚨 fix warning (code taken from #2736) * 👷 use version 2.2.0 of the CI image
8 lines
106 B
Plaintext
8 lines
106 B
Plaintext
#include <nlohmann/json.hpp>
|
|
|
|
int main()
|
|
{
|
|
nlohmann::ordered_json json = {"Test"};
|
|
json.dump();
|
|
}
|