Questions tagged [dtl-cpp]
2 questions
0
votes
1 answer
boost ptime from sql server timestamp_t is off by minutes. What did I do wrong?
I have a SQL server database and I am pulling dates from it and converting the type of timestamp_t into Int64 as such:
Int64 from_timestamp_t(dtl::timestamp_t& t)
{
// create a new posix time structure
boost::posix_time::ptime pt
(
…

jjacksonRIAB
- 127
- 1
- 9
0
votes
1 answer
No matching function for call to … with dtl-cpp
I am using dtl-cpp to compare the difference of two files line by line.
I have set up this comparator:
class LBCompareNSString : public dtl::Compare {
public:
virtual bool impl(const NSString *& A, const NSString *& B) const {
…
user142019