From 70e479a564f69e347f4bfcaff8902abd9ac5f60f Mon Sep 17 00:00:00 2001 From: Francois Keith <francois.keith@aist.go.jp> Date: Wed, 30 Jun 2010 19:30:46 +0900 Subject: [PATCH] Add the missing "int" in "int main (void)" --- unitTesting/test_pool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unitTesting/test_pool.cpp b/unitTesting/test_pool.cpp index 074cfe2f..7996cc6c 100644 --- a/unitTesting/test_pool.cpp +++ b/unitTesting/test_pool.cpp @@ -64,7 +64,7 @@ void MyEntity::display(std::ostream& os ) const { os << "Hello! My name is " << getName() << " !" << endl; } -main() { +int main() { MyEntity myEntity("MyEntity"); cout << "-- Pool.list" << endl; -- GitLab