Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion include/vsg/core/Exception.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
</editor-fold> */

#include <vsg/core/Export.h>

#include <string>

namespace vsg
{

/// Exception object that can be thrown from VSG code, such as failed Vulkan calls where the result value will be the VkResult value
/// returned from failed Vulkan call.
struct Exception
struct VSG_DECLSPEC Exception
{
std::string message;
int result = 0;
Expand Down
Loading