From df33c3540737e37c3b7732d50b2c2c60520878be Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Thu, 10 Jun 2021 19:06:34 -0400 Subject: [PATCH] Cleanup a tab or two. --- CheckBit/checkbit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }