Skip to content

Commit a8813e3

Browse files
committed
add missing include
1 parent c61e04e commit a8813e3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sources/include/citygml/cityobject.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#include <cstdint>
34
#include <vector>
45
#include <memory>
56

@@ -25,7 +26,7 @@ namespace citygml {
2526
{
2627
public:
2728

28-
enum class CityObjectsType : uint64_t {
29+
enum class CityObjectsType : std::uint64_t {
2930
COT_GenericCityObject = 1ll,
3031
COT_Building = 1ll<< 1,
3132
COT_Room = 1ll<< 2,

0 commit comments

Comments
 (0)