aboutsummaryrefslogtreecommitdiff
path: root/cpp02/ex00/Fixed.cpp
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-11-10 12:01:44 +0100
committerCharles Cabergs <me@cacharle.xyz>2020-11-10 12:01:44 +0100
commit18ca1fc67ccc7bf176287f7b2908a33a597ec67a (patch)
tree930e1604156d6b8957d8c01786a18f670a202bc3 /cpp02/ex00/Fixed.cpp
parent9dd7a48967f99793b818f7362ac8e95717186774 (diff)
downloadpiscine_cpp-18ca1fc67ccc7bf176287f7b2908a33a597ec67a.tar.gz
piscine_cpp-18ca1fc67ccc7bf176287f7b2908a33a597ec67a.tar.bz2
piscine_cpp-18ca1fc67ccc7bf176287f7b2908a33a597ec67a.zip
Added more tests for cpp02/02
Diffstat (limited to 'cpp02/ex00/Fixed.cpp')
-rw-r--r--cpp02/ex00/Fixed.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp02/ex00/Fixed.cpp b/cpp02/ex00/Fixed.cpp
index fc50102..091cb0b 100644
--- a/cpp02/ex00/Fixed.cpp
+++ b/cpp02/ex00/Fixed.cpp
@@ -6,14 +6,13 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 11:45:18 by charles #+# #+# */
-/* Updated: 2020/11/09 13:07:28 by cacharle ### ########.fr */
+/* Updated: 2020/11/10 09:50:15 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "Fixed.hpp"
-Fixed::Fixed()
- : m_value(0)
+Fixed::Fixed() : m_value(0)
{
std::cout << "Default constructor called" << std::endl;
}