diff options
Diffstat (limited to 'gentoobrowse-api/domain/converters.cpp')
-rw-r--r-- | gentoobrowse-api/domain/converters.cpp | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gentoobrowse-api/domain/converters.cpp b/gentoobrowse-api/domain/converters.cpp index 8a3abbd..09268b8 100644 --- a/gentoobrowse-api/domain/converters.cpp +++ b/gentoobrowse-api/domain/converters.cpp @@ -1,20 +1,17 @@ -#include <portage-models.h> #include "converters.h" #include "converters.impl.h" #include "unpackPqTextArray.h" -#include <string> #include <boost/algorithm/string/join.hpp> #include <boost/algorithm/string/split.hpp> +#include <portage-models.h> +#include <string> namespace Slicer { - template<typename T> - PqArray<T>::PqArray(std::vector<T> * l) : - ModelPartForSequence<std::vector<T>>(l) - { - } + template<typename T> PqArray<T>::PqArray(std::vector<T> * l) : ModelPartForSequence<std::vector<T>>(l) { } template<typename T> - void PqArray<T>::SetValue(ValueSource && s) + void + PqArray<T>::SetValue(ValueSource && s) { std::string in; s.set(in); @@ -44,4 +41,3 @@ namespace Slicer { return boost::gregorian::to_sql_string(s.date()); } } - |