diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-09-23 11:25:02 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-09-23 11:25:02 +0200 |
commit | 385a45a47fdb47a890178b7b4604a37fc214a10e (patch) | |
tree | 6185865a963fa038d547e0078f93e20ab609c04b | |
parent | 0198441b5e7d3ed5f9307d400feca87cc63ad1a6 (diff) |
Add missing headers and hoist std namespace declarations into global
-rw-r--r-- | odb/oracle/traits.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/odb/oracle/traits.cxx b/odb/oracle/traits.cxx index c842755..4bae42d 100644 --- a/odb/oracle/traits.cxx +++ b/odb/oracle/traits.cxx @@ -3,11 +3,14 @@ // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file -#include <cmath> +#include <cstddef> // std::size_t +#include <cmath> // pow #include <deque> #include <odb/oracle/traits.hxx> +using namespace std; + namespace odb { namespace oracle |