From 3d72e3302fb02d679740d28ef2c03632bf243029 Mon Sep 17 00:00:00 2001 From: LYND$KG <60162813+lyndskg@users.noreply.github.com> Date: Sun, 7 Jan 2024 08:12:31 -0500 Subject: [PATCH] Update inputReader.cpp --- src/inputReader.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/inputReader.cpp b/src/inputReader.cpp index 04438d3..50f2ade 100644 --- a/src/inputReader.cpp +++ b/src/inputReader.cpp @@ -9,7 +9,6 @@ #include #include // For exception handling #include -// #include "../include/third_party/fast_io/include/fast_io.h" #include // Example library for making HTTP requests // Include necessary database libraries @@ -24,6 +23,7 @@ using namespace std; + // Include the declaration of the fast_io function // TODO: fix later // extern void fast_io(); @@ -37,16 +37,17 @@ using namespace std; size_t responseCallback(void* contents, size_t size, size_t nmemb, string* response); -// ---------------------------------------------------------------------------- -// "inputReader" Class Member Function Implementations -// ---------------------------------------------------------------------------- -/*------------------------------ CONSTRUCTORS -------------------------------*/ +// ------------------------------------------------------------------------------------------------ +// "inputReader" Class Member Function Implementations +// ------------------------------------------------------------------------------------------------ +/*---------------------------------------- CONSTRUCTORS -----------------------------------------*/ // Default constructor. inputReader::inputReader() { // Call fast_io to optimize I/O speed - // TODO; put in later // fast_io(); + + // TODO; put in later } // inputReader()