diff --git a/CheckBit/checkbit.cpp b/CheckBit/checkbit.cpp index 6d25315..530e487 100644 --- a/CheckBit/checkbit.cpp +++ b/CheckBit/checkbit.cpp @@ -35,6 +35,6 @@ int main(int argc, char *argv[]) printf("Bit number %d is not SET in number %d.\n",BIT,BINARY_NUM); } std::cout << "BIN = " << std::bitset<8>(BINARY_NUM) << std::endl; // Send the bitset to cout - std::cout << "BIT = " << std::bitset<8>(BIT) << std::endl; // Send the bitset to cout - return 0; + std::cout << "BIT = " << std::bitset<8>(BIT) << std::endl; // Send the bitset to cout + return 0; }