Skip to content

Commit 19ce6f6

Browse files
committed
add missing include
1 parent af16a8e commit 19ce6f6

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

@@ -24,7 +25,7 @@ namespace citygml {
2425
{
2526
public:
2627

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

0 commit comments

Comments
 (0)