1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

Merge pull request #2062 from johnrocamora/master

[c++/en] Added missing semicolon
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë
2015-12-13 01:42:06 +02:00

View File

@@ -149,7 +149,7 @@ namespace First {
namespace Second { namespace Second {
void foo() void foo()
{ {
printf("This is Second::foo\n") printf("This is Second::foo\n");
} }
} }