1
0

🔨」 fix: fixed ex00

This commit is contained in:
2025-07-03 14:01:38 +02:00
parent 81064ed6f4
commit 14cda73db2
3 changed files with 12 additions and 26 deletions

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/21 10:38:49 by adjoly #+# #+# */
/* Updated: 2025/06/03 12:09:58 by adjoly ### ########.fr */
/* Updated: 2025/07/03 13:54:16 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -106,13 +106,3 @@ class BitcoinExchange {
std::pair<Date, float> _parseLine(void);
void _printPair(std::pair<Date, float>);
};
class CompareDate {
public:
CompareDate(Date);
bool operator()(const std::pair<Date, float> &pair) const;
private:
Date _date;
};