move asside lib/format.hpp
...to make room for a new more specialised header
This commit is contained in:
parent
a3b7305b2b
commit
50885a065b
10 changed files with 8 additions and 9 deletions
|
|
@ -30,7 +30,7 @@
|
|||
** Because, if we can get a \c bool answer to such a question <i>at compile time,</i> we can use
|
||||
** \c boost::enable_if to pick a special implementation based on the test result. Together, these
|
||||
** techniques allow to adopt a duck-typed programming style, where an arbitrary object is allowed
|
||||
** to enter a given API function, provided this object supports some special operations.
|
||||
** to enter a given API function, provided this object supports some specific operations.
|
||||
**
|
||||
** While C++ certainly isn't a dynamic language and doesn't provide any kind of run time introspection,
|
||||
** doing such check-and branch at compile time allows even to combine such a flexible approach with
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
#include "lib/error.hpp"
|
||||
#include "lib/meta/generator.hpp"
|
||||
#include "lib/meta/typelist-util.hpp"
|
||||
#include "lib/format.hpp"
|
||||
#include "lib/format-util.hpp"
|
||||
#include "lib/typed-counter.hpp"
|
||||
#include "include/logging.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
#ifndef LIB_SUB_ID_H
|
||||
#define LIB_SUB_ID_H
|
||||
|
||||
#include "lib/format.hpp"
|
||||
#include "lib/format-util.hpp"
|
||||
|
||||
//#include <functional>
|
||||
#include <boost/functional/hash.hpp> /////TODO better push the hash implementation into a cpp file (and btw, do it more seriously!)
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@
|
|||
#define LIB_TYPED_ALLOCATION_MANAGER_H
|
||||
|
||||
#include "lib/error.hpp"
|
||||
#include "lib/format.hpp"
|
||||
#include "lib/format-util.hpp"
|
||||
#include "lib/typed-counter.hpp"
|
||||
#include "include/logging.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@
|
|||
#include "lib/meta/function-erasure.hpp"
|
||||
#include "lib/meta/tuple.hpp"
|
||||
#include "lib/meta/maybe-compare.hpp"
|
||||
#include "lib/format.hpp"
|
||||
#include "lib/format-util.hpp"
|
||||
#include "lib/util.hpp"
|
||||
#include "proc/control/argument-erasure.hpp"
|
||||
#include "lib/typed-allocation-manager.hpp"
|
||||
|
|
|
|||
|
|
@ -60,7 +60,6 @@
|
|||
#include "lib/error.hpp"
|
||||
#include "lib/singleton.hpp"
|
||||
#include "lib/sync.hpp"
|
||||
#include "lib/format.hpp"
|
||||
#include "include/logging.h"
|
||||
#include "lib/util.hpp"
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
#include "lib/meta/function-closure.hpp"
|
||||
#include "proc/control/command-signature.hpp"
|
||||
#include "lib/functor-util.hpp"
|
||||
#include "lib/format.hpp"
|
||||
#include "lib/format-util.hpp"
|
||||
#include "lib/util.hpp"
|
||||
|
||||
#include <boost/operators.hpp>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
#include "lib/test/test-helper.hpp"
|
||||
#include "proc/control/command-invocation.hpp"
|
||||
#include "proc/control/command-def.hpp"
|
||||
#include "lib/format.hpp"
|
||||
#include "lib/format-util.hpp"
|
||||
#include "lib/util.hpp"
|
||||
|
||||
#include "proc/control/test-dummy-commands.hpp"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
#include "lib/test/run.hpp"
|
||||
#include "lib/format.hpp"
|
||||
#include "lib/format-util.hpp"
|
||||
#include "lib/error.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
|
|
|||
Loading…
Reference in a new issue