Fixes for Windows.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
b72685ff05
commit
ea5c824d34
|
@ -1,6 +1,8 @@
|
|||
#ifndef ARBUTILS_DICTIONARY_HPP
|
||||
#define ARBUTILS_DICTIONARY_HPP
|
||||
#include <algorithm>
|
||||
#include <optional>
|
||||
#include <unordered_map>
|
||||
#include "../Ensure.hpp"
|
||||
|
||||
namespace ArbUt {
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#ifndef ARBUTILS_LIST_HPP
|
||||
#define ARBUTILS_LIST_HPP
|
||||
#include <vector>
|
||||
#include <sstream>
|
||||
#include "../Exception.hpp"
|
||||
|
||||
namespace ArbUt {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/** @file */
|
||||
#include "Exception.hpp"
|
||||
#include <sstream>
|
||||
|
||||
/// \defgroup Ensure Ensure
|
||||
/// \brief A set of ensure macros.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#ifndef ARBUTILS_EXCEPTION_HPP
|
||||
#define ARBUTILS_EXCEPTION_HPP
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
|
||||
#if !WINDOWS
|
||||
#if PRETTYTRACES
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define ARBUTILS___BORROWEDPTR_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <memory>
|
||||
#include "../Ensure.hpp"
|
||||
|
||||
namespace ArbUt {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef ARBUTILS___OPTIONALOptionalUniquePtrList_HPP
|
||||
#define ARBUTILS___OPTIONALOptionalUniquePtrList_HPP
|
||||
|
||||
#include <vector>
|
||||
#include "__OptionalBorrowedPtr.hpp"
|
||||
|
||||
namespace ArbUt {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef ARBUTILS___UNIQUEPTRLIST_HPP
|
||||
#define ARBUTILS___UNIQUEPTRLIST_HPP
|
||||
|
||||
#include <vector>
|
||||
#include "../Ensure.hpp"
|
||||
#include "__BorrowedPtr.hpp"
|
||||
|
||||
|
|
Loading…
Reference in New Issue