core+daemon: eliminate scheduler::{schedule,cancel} wrappers
Also move core/global-io.hpp to daemon/global.hpp
Refs: #4528, #4883
Change-Id: I0b99029f1a19d7451aab57099cd3303b7eb42ff3
diff --git a/daemon/table/cs.hpp b/daemon/table/cs.hpp
index fc161c5..16e28a5 100644
--- a/daemon/table/cs.hpp
+++ b/daemon/table/cs.hpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
- * Copyright (c) 2014-2018, Regents of the University of California,
+ * Copyright (c) 2014-2019, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
@@ -29,7 +29,7 @@
#include "cs-policy.hpp"
#include "cs-internal.hpp"
#include "cs-entry-impl.hpp"
-#include <ndn-cxx/util/signal.hpp>
+
#include <boost/iterator/transform_iterator.hpp>
namespace nfd {
@@ -210,8 +210,8 @@
unique_ptr<Policy> m_policy;
signal::ScopedConnection m_beforeEvictConnection;
- bool m_shouldAdmit; ///< if false, no Data will be admitted
- bool m_shouldServe; ///< if false, all lookups will miss
+ bool m_shouldAdmit = true; ///< if false, no Data will be admitted
+ bool m_shouldServe = true; ///< if false, all lookups will miss
};
} // namespace cs