diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-07-28 08:37:41 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-07-28 08:37:41 +0800 |
commit | e2c78dd737615855d153f598ff04f0493999f26c (patch) | |
tree | d370d7113bd595ec8fb7d43fbfed5882c2dd48a2 /indra/newview/gltfscenemanager.cpp | |
parent | 8686e3d6f1cff12fd252c705411c10f62e988e76 (diff) |
Remove boost::json::serialize second arguments
to make it build with Boost older than 1.83. The argument that
has been passed so far is {}, which would be implied for that
parameter in newer Boost anyway.
Diffstat (limited to 'indra/newview/gltfscenemanager.cpp')
-rw-r--r-- | indra/newview/gltfscenemanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/gltfscenemanager.cpp b/indra/newview/gltfscenemanager.cpp index 7b2de4d6de..f3be0e24b4 100644 --- a/indra/newview/gltfscenemanager.cpp +++ b/indra/newview/gltfscenemanager.cpp @@ -458,7 +458,7 @@ void GLTFSceneManager::update() { boost::json::object obj; mUploadingAsset->serialize(obj); - std::string buffer = boost::json::serialize(obj, {}); + std::string buffer = boost::json::serialize(obj); LLNewBufferedResourceUploadInfo::uploadFailure_f failure = [this](LLUUID assetId, LLSD response, std::string reason) { |