Change namespace name
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
#include <format>
|
||||
#endif
|
||||
|
||||
namespace openVulkanoCpp
|
||||
namespace OpenVulkano
|
||||
{
|
||||
namespace
|
||||
{
|
||||
@@ -134,7 +134,7 @@ namespace openVulkanoCpp
|
||||
}
|
||||
|
||||
//region Compare functions
|
||||
int Version::CompareBuildNr(const openVulkanoCpp::Version& other) const
|
||||
int Version::CompareBuildNr(const OpenVulkano::Version& other) const
|
||||
{
|
||||
if (m_buildNumber == 0 || other.m_buildNumber == 0) return 0;
|
||||
if (m_buildNumber > other.m_buildNumber) return 1;
|
||||
@@ -169,7 +169,7 @@ namespace openVulkanoCpp
|
||||
return 0;
|
||||
}
|
||||
|
||||
int Version::Compare(const openVulkanoCpp::Version& other)
|
||||
int Version::Compare(const OpenVulkano::Version& other)
|
||||
{
|
||||
int comp;
|
||||
if ((comp = CompareComponents(other)) != 0) return comp;
|
||||
|
||||
Reference in New Issue
Block a user