Skip to content

Commit

Permalink
Removed unused comment
Browse files Browse the repository at this point in the history
  • Loading branch information
AideTechBot committed Dec 18, 2020
1 parent 8b17bd8 commit 5e3dbd8
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions brs/brs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,19 +464,6 @@ namespace BRS {

inline Reader::Reader(std::string filepath) : reader_(std::ifstream(filepath, std::ios::in | std::ios::binary))
{
// std::cout << std::endl;
// int column = 0;
// while (!reader_.eof()) {
// unsigned char c;
// reader_.read(reinterpret_cast<char*>(&c), sizeof(c));
// std::cout << std::setfill('0') << std::setw(2) << std::right << std::hex << (unsigned int)c << " ";
// if((column + 1) % 8 == 0)
// {
// std::cout << std::endl;
// }
// column++;
// }

if (!check_magic(reader_) || reader_.fail())
{
throw BRS::Exception("Invalid BRS file.");
Expand Down

0 comments on commit 5e3dbd8

Please sign in to comment.