From 1e6c2d5aa049ed4e921b2fd577a06b4bc538ea49 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Wed, 21 Oct 2020 05:10:05 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 45dc7176 --- math/magic_number.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/math/magic_number.cpp b/math/magic_number.cpp index bec86b888..3720dff65 100644 --- a/math/magic_number.cpp +++ b/math/magic_number.cpp @@ -16,8 +16,8 @@ * sum will be 1, thus verifying that it is a magic number. * @author [Neha Hasija](https://github.com/neha-hasija17) */ -#include /// for assert -#include /// for io operations +#include /// for assert +#include /// for io operations /** * Function to check if the given number is magic number or not. @@ -68,6 +68,6 @@ static void tests() { * @returns 0 on exit */ int main() { - tests(); // execute the tests + tests(); // execute the tests return 0; }