50 lines
1.1 KiB
Diff
50 lines
1.1 KiB
Diff
|
From 53143e5d9ebdab0ea06205b9e2c2dbf2a6d0b8ca Mon Sep 17 00:00:00 2001
|
||
|
From: Sergii Piatakov <sergii.piatakov@globallogic.com>
|
||
|
Date: Thu, 15 Nov 2018 15:26:35 +0200
|
||
|
Subject: [PATCH 2/2] formatting: use tabs instead of spaces
|
||
|
|
||
|
Signed-off-by: Sergii Piatakov <sergii.piatakov@globallogic.com>
|
||
|
Signed-off-by: IO-23 Oleh Shmuliar <hasslesstech@tutanota.com>
|
||
|
---
|
||
|
calculator.cpp | 4 ++--
|
||
|
calculator.h | 6 +++---
|
||
|
2 files changed, 5 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/calculator.cpp b/calculator.cpp
|
||
|
index d93e35b..f323e14 100644
|
||
|
--- a/calculator.cpp
|
||
|
+++ b/calculator.cpp
|
||
|
@@ -2,10 +2,10 @@
|
||
|
|
||
|
int Calculator::Add (double a, double b)
|
||
|
{
|
||
|
- return a + b + 0.5;
|
||
|
+ return a + b;
|
||
|
}
|
||
|
|
||
|
int Calculator::Sub (double a, double b)
|
||
|
{
|
||
|
- return Add (a, -b);
|
||
|
+ return Add (a, -b);
|
||
|
}
|
||
|
diff --git a/calculator.h b/calculator.h
|
||
|
index 3740907..d59d596 100644
|
||
|
--- a/calculator.h
|
||
|
+++ b/calculator.h
|
||
|
@@ -3,9 +3,9 @@
|
||
|
|
||
|
class Calculator
|
||
|
{
|
||
|
- public:
|
||
|
- int Add (double, double);
|
||
|
- int Sub (double, double);
|
||
|
+ public:
|
||
|
+ int Add (double, double);
|
||
|
+ int Sub (double, double);
|
||
|
};
|
||
|
|
||
|
#endif//CALCULATOR_H
|
||
|
--
|
||
|
2.39.5
|
||
|
|