forked from qt-creator/qt-creator
debugger: fix copy-and-pasteo
Change-Id: I99923f9c2a06e8ef3bdb070419b4a19af0ddfa90 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -5011,15 +5011,15 @@ namespace boost {
|
||||
using namespace posix_time;
|
||||
time_duration d1(1, 0, 0);
|
||||
BREAK_HERE;
|
||||
// Check p1 01:00:00 boost::posix_time::time_duration.
|
||||
// Check d1 01:00:00 boost::posix_time::time_duration.
|
||||
// Continue.
|
||||
time_duration d2(0, 1, 0);
|
||||
BREAK_HERE;
|
||||
// Check d1 00:00:01 boost::posix_time::time_duration.
|
||||
// Check d2 00:01:00 boost::posix_time::time_duration.
|
||||
// Continue.
|
||||
time_duration d3(0, 0, 1);
|
||||
BREAK_HERE;
|
||||
// Check d1 00:00:01 boost::posix_time::time_duration.
|
||||
// Check d3 00:00:01 boost::posix_time::time_duration.
|
||||
// Continue.
|
||||
dummyStatement(&d1, &d2, &d3);
|
||||
}
|
||||
@@ -5035,11 +5035,11 @@ namespace boost {
|
||||
// Continue.
|
||||
ptime p2(date(2002, 1, 10), time_duration(0, 0, 0));
|
||||
BREAK_HERE;
|
||||
// Check p1 Thu Jan 10 00:00:00 2002 boost::posix_time::ptime.
|
||||
// Check p2 Thu Jan 10 00:00:00 2002 boost::posix_time::ptime.
|
||||
// Continue.
|
||||
ptime p3(date(1970, 1, 1), time_duration(0, 0, 0));
|
||||
BREAK_HERE;
|
||||
// Check p1 Thu Jan 1 00:00:00 1970 boost::posix_time::ptime.
|
||||
// Check p3 Thu Jan 1 00:00:00 1970 boost::posix_time::ptime.
|
||||
// Continue.
|
||||
dummyStatement(&p1, &p2, &p3);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user