Skip to content

Commit 4528d70

Browse files
committedMar 13, 2025
[cxx11] Remove use of deprecated headers
For #79
1 parent 6eefc7a commit 4528d70

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/Object/inst/instance_alias.tcc

+4-1
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@
6868
#include "util/what.hh"
6969
#include "util/stacktrace.hh"
7070
#include "util/static_trace.hh"
71+
#if __cplusplus < 201103L
7172
#include "util/compose.hh"
7273
#include "util/binders.hh"
7374
#include "util/dereference.hh"
74-
75+
#endif
7576

7677
namespace HAC {
7778
namespace entity {
@@ -80,8 +81,10 @@ using std::ostringstream;
8081
// using std::_Select1st;
8182
#include "util/using_ostream.hh"
8283
using util::multikey_generator;
84+
#if __cplusplus < 201103L
8385
USING_UTIL_COMPOSE
8486
using util::dereference;
87+
#endif
8588
using util::multikey;
8689
using util::value_writer;
8790
using util::value_reader;

0 commit comments

Comments
 (0)
Please sign in to comment.