We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4845757 commit 272d26dCopy full SHA for 272d26d
include/nbl/video/CVulkanConnection.h
@@ -13,7 +13,7 @@
13
namespace nbl::video
14
{
15
16
-NBL_API2 int vulkaninfo(const std::span<char*> args);
+NBL_API2 int vulkaninfo(const std::span<const char*> args);
17
18
class NBL_API2 CVulkanConnection final : public IAPIConnection
19
src/nbl/video/CVulkanConnection.cpp
@@ -375,9 +375,9 @@ bool CVulkanConnection::endCapture()
375
return true;
376
}
377
378
-int vulkaninfo(const std::span<char*> args)
+int vulkaninfo(const std::span<const char*> args)
379
380
- return ::vulkaninfo(args.size(), args.data());
+ return ::vulkaninfo(args.size(), const_cast<char**>(args.data()));
381
382
383
0 commit comments