Added missing type declaration.

This commit is contained in:
Ian Dinwoodie
2019-04-28 00:54:05 -04:00
parent b27f872ea7
commit 000fd50e14

View File

@@ -476,7 +476,7 @@ class Burger
{ {
public: public:
Burger(int patties, bool cheese = true, bool pepperoni = true, Burger(int patties, bool cheese = true, bool pepperoni = true,
bool tomato = true, lettuce = true); bool tomato = true, bool lettuce = true);
} }
``` ```