aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid <david@xagasoft.com>2007-07-07 00:50:20 +0000
committerDavid <david@xagasoft.com>2007-07-07 00:50:20 +0000
commit99a19b864e615dc32d8615c7719cf2b40557d6df (patch)
tree16bad13ff9218f8478b8ab31c164758dfdc0c4ab
parenta7a5a9ee34ab34a2cfbf4048beb1f1d503fabd31 (diff)
downloadlibbu++-99a19b864e615dc32d8615c7719cf2b40557d6df.tar.gz
libbu++-99a19b864e615dc32d8615c7719cf2b40557d6df.tar.bz2
libbu++-99a19b864e615dc32d8615c7719cf2b40557d6df.tar.xz
libbu++-99a19b864e615dc32d8615c7719cf2b40557d6df.zip
david - added a return to a non-void function
-rw-r--r--src/list.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/list.h b/src/list.h
index 2ac12e0..8f29e85 100644
--- a/src/list.h
+++ b/src/list.h
@@ -68,6 +68,7 @@ namespace Bu
68 { 68 {
69 append( *pCur->pValue ); 69 append( *pCur->pValue );
70 } 70 }
71 return *this;
71 } 72 }
72 73
73 /** 74 /**