Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r77719 - trunk/libs/thread/tutorial
From: vicente.botet_at_[hidden]
Date: 2012-04-02 12:37:54


Author: viboes
Date: 2012-04-02 12:37:53 EDT (Mon, 02 Apr 2012)
New Revision: 77719
URL: http://svn.boost.org/trac/boost/changeset/77719

Log:
Thread: Remove duplicated file #3160
Removed:
   trunk/libs/thread/tutorial/helloworld4.cpp

Deleted: trunk/libs/thread/tutorial/helloworld4.cpp
==============================================================================
--- trunk/libs/thread/tutorial/helloworld4.cpp 2012-04-02 12:37:53 EDT (Mon, 02 Apr 2012)
+++ (empty file)
@@ -1,20 +0,0 @@
-// Copyright (C) 2001-2003
-// William E. Kempf
-//
-// Distributed under the Boost Software License, Version 1.0. (See accompanying
-// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-
-#include <boost/thread/thread.hpp>
-#include <boost/bind.hpp>
-#include <iostream>
-
-void helloworld(const char* who)
-{
- std::cout << who << "says, \"Hello World.\"" << std::endl;
-}
-
-int main()
-{
- boost::thread thrd(boost::bind(&helloworld, "Bob"));
- thrd.join();
-}


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk