Add no-deprecated to warnings due to dynamic exceptions.
[anna.git] / source / dbms / Float.cc.new
1 #include <stdio.h>
2
3 #include <anna/core/tracing/Logger.hpp>
4
5 #include <anna/dbms/Float.hpp>
6
7 using namespace anna;
8 using namespace anna::dbms;
9
10 std::string dbms::Float::asString () const 
11    throw ()
12 {
13    std::string result ("dbms::Float { ");
14    result += dbms::Data::asString ();
15    result += " | Value: ";
16    result += functions::asString (a_format, a_value);
17    return result += " }";
18 }
19