$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: phil_at_[hidden]
Date: 2008-08-06 06:00:37
Author: pbouchard
Date: 2008-08-06 06:00:37 EDT (Wed, 06 Aug 2008)
New Revision: 48001
URL: http://svn.boost.org/trac/boost/changeset/48001
Log:
Typo again.
Text files modified: 
   sandbox/shifted_ptr/libs/smart_ptr/example/regex_test1.cpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/shifted_ptr/libs/smart_ptr/example/regex_test1.cpp
==============================================================================
--- sandbox/shifted_ptr/libs/smart_ptr/example/regex_test1.cpp	(original)
+++ sandbox/shifted_ptr/libs/smart_ptr/example/regex_test1.cpp	2008-08-06 06:00:37 EDT (Wed, 06 Aug 2008)
@@ -52,7 +52,7 @@
 
 int main(int argv, char * argc[])
 {
-    shifted_ptr<neuron> brain = new shifted<neuron>("I eat ([a-z ]+) then drink ([a-z ]+)", new shifted<neuron>("beef|chicken"), new shifted<neuron>("vodka|water"));
+    shifted_ptr<neuron> brain = new shifted<neuron>("I eat ([a-z]+) then drink ([a-z]+)", new shifted<neuron>("beef|chicken"), new shifted<neuron>("vodka|water"));
 
     cout << ((* brain)("I eat beef then drink water") > .5 ? "true" : "false") << endl;
 }