Revision history of "CPP/AnonymousNamespace"

From ProgrammingExamples
Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 16:17, 3 October 2010Daviddoria (Talk | contribs). . (416 bytes) (+416). . (Created page with '==AnonymousNamespace.cxx== <source lang="cpp"> #include <iostream> namespace { void Test(); } int main (int argc, char *argv[]) { Test(); return 0; } namespace { void…')