Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions include/Arcus/MessageTypeStore.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#define ARCUS_MESSAGE_TYPE_STORE_H

#include <memory>
#include <cstdint>

#include "Arcus/Types.h"

Expand Down
1 change: 1 addition & 0 deletions include/Arcus/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include <memory>
#include <string>
#include <cstdint>

namespace google
{
Expand Down
1 change: 1 addition & 0 deletions src/MessageTypeStore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <iostream>
#include <sstream>
#include <unordered_map>
#include <cstdint>

#include <google/protobuf/compiler/importer.h>
#include <google/protobuf/dynamic_message.h>
Expand Down
2 changes: 2 additions & 0 deletions src/PlatformSocket.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) 2022 Ultimaker B.V.
// libArcus is released under the terms of the LGPLv3 or higher.

#include <cstdint>

#include "PlatformSocket_p.h"

#ifdef _WIN32
Expand Down
1 change: 1 addition & 0 deletions src/PlatformSocket_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include <memory>
#include <string>
#include <cstdint>

namespace Arcus
{
Expand Down
1 change: 1 addition & 0 deletions src/Socket_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <string>
#include <thread>
#include <unordered_map>
#include <cstdint>

#ifdef _WIN32
#include <winsock2.h>
Expand Down
2 changes: 2 additions & 0 deletions src/WireMessage_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#ifndef ARCUS_WIRE_MESSAGE_P_H
#define ARCUS_WIRE_MESSAGE_P_H

#include <cstdint>

#include "Arcus/Types.h"

namespace Arcus
Expand Down
1 change: 1 addition & 0 deletions test_package/src/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <chrono>
#include <iostream>
#include <thread>
#include <cstdint>

#include "test.h"

Expand Down