Fixes for Windows.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-10-30 13:38:52 +02:00
parent b72685ff05
commit ea5c824d34
8 changed files with 11 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
#define ARBUTILS___BORROWEDPTR_HPP
#include <cstddef>
#include <memory>
#include "../Ensure.hpp"
namespace ArbUt {

View File

@@ -1,6 +1,7 @@
#ifndef ARBUTILS___OPTIONALOptionalUniquePtrList_HPP
#define ARBUTILS___OPTIONALOptionalUniquePtrList_HPP
#include <vector>
#include "__OptionalBorrowedPtr.hpp"
namespace ArbUt {

View File

@@ -3,6 +3,7 @@
#include "../Ensure.hpp"
namespace ArbUt {
/// @brief A unique pointer is used to indicate a pointer that is owned by its holder, and will be deleted when its
/// owner is deleted. As with all Arbutils pointers, this cannot be assigned null. Use an OptionalUniquePtr for

View File

@@ -1,6 +1,7 @@
#ifndef ARBUTILS___UNIQUEPTRLIST_HPP
#define ARBUTILS___UNIQUEPTRLIST_HPP
#include <vector>
#include "../Ensure.hpp"
#include "__BorrowedPtr.hpp"