Change namespace name

This commit is contained in:
2023-10-03 19:52:23 +02:00
parent 7538c82772
commit e0f24153d3
208 changed files with 246 additions and 246 deletions

View File

@@ -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;