README.md

This commit is contained in:
2022-03-25 17:54:51 +03:00
parent 81b749caa2
commit 831f202536
2 changed files with 3 additions and 5 deletions

View File

@@ -33,6 +33,6 @@ You should add ${<out_var>} to your target.
## Documentation
[Online documentation](https://shs.tools/pip/html/en/index.html)
[Online documentation 🇺🇸](https://shs.tools/pip/html/en/index.html)
[Онлайн документация](https://shs.tools/pip/html/ru/index.html)
[Онлайн документация 🇷🇺](https://shs.tools/pip/html/ru/index.html)

View File

@@ -59,10 +59,8 @@ bool operator ==(const PITime & t0, const PITime & t1) {
return (t0.hours == t1.hours && t0.minutes == t1.minutes && t0.seconds == t1.seconds);
}
#include <map>
bool operator <(const PITime & t0, const PITime & t1) {
std::map<int, double> m;
m.at
if (t0.hours == t1.hours) {
if (t0.minutes == t1.minutes) {
return t0.seconds < t1.seconds;