diff options
author | SanJacobs | 2022-07-12 23:46:53 +0200 |
---|---|---|
committer | SanJacobs | 2022-07-12 23:46:53 +0200 |
commit | a04dd89365fcadf919bd486a75ba3e4f4629a45a (patch) | |
tree | c64ed8d5a1ba9c15382bfc52ff0ddab73eefa68a /src/test.cpp | |
parent | 62866cac4eb109490ad1d79a3295a3848da8c134 (diff) | |
download | satscalc-a04dd89365fcadf919bd486a75ba3e4f4629a45a.tar.gz satscalc-a04dd89365fcadf919bd486a75ba3e4f4629a45a.tar.bz2 satscalc-a04dd89365fcadf919bd486a75ba3e4f4629a45a.zip |
Made timeinput() vastly less tedious
Diffstat (limited to 'src/test.cpp')
-rw-r--r-- | src/test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test.cpp b/src/test.cpp index 3d6d78b..8d36f3a 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -78,6 +78,6 @@ void test(){ moment inputmoment = timeinput(); std::cout << "Time reveived: " << timeprint(inputmoment) << std::endl; - moment inputmoment2 = timeinput(2012, 11, 26); + moment inputmoment2 = timeinput(inputmoment); std::cout << "Time reveived: " << timeprint(inputmoment2) << std::endl; } |