From c7cb46d5bb8931f958789a9e372cd54772a6ab65 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 31 Oct 2000 22:11:51 +0000 Subject: [PATCH] Fix bug in example [SVN r8084] --- example1.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example1.html b/example1.html index 9a4a868d..3eaf87c5 100644 --- a/example1.html +++ b/example1.html @@ -25,7 +25,7 @@ namespace hello {       const char* get() const { return "hi, world"; }     ...   }; -  void length(const world& x) { return std::strlen(x.get()); } +  std::size_t length(const world& x) { return std::strlen(x.get()); } } @@ -122,6 +122,6 @@ extern "C" BOOL WINAPI DllMain(HINSTANCE, DWORD, LPVOID) express or implied warranty, and with no claim as to its suitability for any purpose.

- Updated: Oct 15, 2000 + Updated: Oct 30, 2000