Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-03 11:57:35 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-03 11:57:35 +0300
commit6efe2493a65540d3f484a8b7f27d5298d49c9da4 (patch)
tree55ff8924a57c370c16eb69ab90b35ff7d723bf78 /include/llfio/v2.0/deadline.h
parent53d415a3b69d2680c15ae2c56a9baf9b149ad71d (diff)
Lots more afio => llfio renaming
Diffstat (limited to 'include/llfio/v2.0/deadline.h')
-rw-r--r--include/llfio/v2.0/deadline.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/llfio/v2.0/deadline.h b/include/llfio/v2.0/deadline.h
index e4629843..26ec6080 100644
--- a/include/llfio/v2.0/deadline.h
+++ b/include/llfio/v2.0/deadline.h
@@ -22,8 +22,8 @@ Distributed under the Boost Software License, Version 1.0.
http://www.boost.org/LICENSE_1_0.txt)
*/
-#ifndef AFIO_DEADLINE_H
-#define AFIO_DEADLINE_H
+#ifndef LLFIO_DEADLINE_H
+#define LLFIO_DEADLINE_H
#include <stdbool.h> // NOLINT
#include <time.h> // NOLINT
@@ -31,21 +31,21 @@ Distributed under the Boost Software License, Version 1.0.
//! \file deadline.h Provides struct deadline
#if defined(__cplusplus) || DOXYGEN_IS_IN_THE_HOUSE
-#ifndef AFIO_CONFIG_HPP
+#ifndef LLFIO_CONFIG_HPP
#error You must include the master afio.hpp, not individual header files directly
#endif
#include "config.hpp"
#include <stdexcept>
-AFIO_V2_NAMESPACE_EXPORT_BEGIN
-#define AFIO_DEADLINE_NAME deadline
+LLFIO_V2_NAMESPACE_EXPORT_BEGIN
+#define LLFIO_DEADLINE_NAME deadline
#else
-#define AFIO_DEADLINE_NAME boost_afio_deadline
+#define LLFIO_DEADLINE_NAME boost_afio_deadline
#endif
/*! \struct deadline
\brief A time deadline in either relative-to-now or absolute (system clock) terms
*/
-struct AFIO_DEADLINE_NAME
+struct LLFIO_DEADLINE_NAME
{
//! True if deadline does not change with system clock changes
bool steady; // NOLINT
@@ -104,9 +104,9 @@ struct AFIO_DEADLINE_NAME
#endif
};
-#undef AFIO_DEADLINE_NAME
+#undef LLFIO_DEADLINE_NAME
#if defined(__cplusplus) || DOXYGEN_IS_IN_THE_HOUSE
-AFIO_V2_NAMESPACE_END
+LLFIO_V2_NAMESPACE_END
#endif
#endif