Boost logo

Boost-Commit :

From: filip.konvicka_at_[hidden]
Date: 2008-04-04 03:59:35


Author: fkonvick
Date: 2008-04-04 03:59:34 EDT (Fri, 04 Apr 2008)
New Revision: 44028
URL: http://svn.boost.org/trac/boost/changeset/44028

Log:
Adding boost::optional, thanks to Daniel Kruegler
Added:
   sandbox/boost_docs/subprojects/DebuggerVisualizers/boost__optional.msvc8.vis.txt (contents, props changed)
Text files modified:
   sandbox/boost_docs/subprojects/DebuggerVisualizers/boost__ptr_container.msvc8.vis.txt | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Added: sandbox/boost_docs/subprojects/DebuggerVisualizers/boost__optional.msvc8.vis.txt
==============================================================================
--- (empty file)
+++ sandbox/boost_docs/subprojects/DebuggerVisualizers/boost__optional.msvc8.vis.txt 2008-04-04 03:59:34 EDT (Fri, 04 Apr 2008)
@@ -0,0 +1,50 @@
+;-------------------------------------------------------------
+; BOOST_VISUALIZER_START boost::optional
+;
+; Copyright Daniel Kruegler 2008. Use, modification and distribution are subject to
+; 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)
+;
+; @guid D02681E0-021B-11DD-95FF-0800200C9A66
+; @platform msvc-8, msvc-9
+; @version 1.0
+; @author Daniel Kruegler
+; @email daniel dot kruegler at bdal dot de
+;
+; Usage
+; =====
+;
+; All of the following text must be placed in the autoexp.dat file.
+; Usage is automatic. No extra code is required.
+;
+
+boost::optional<*>|boost::optional_detail::optional_base<*> {
+ preview
+ (
+ #if($e.m_initialized)
+ (
+ *(($T1 *) (&$e.m_storage.dummy_.data[0]))
+ )
+ #else
+ (
+ "?"
+ )
+ )
+
+ children
+ (
+ #if($e.m_initialized)
+ (
+ #(value:
+ *(($T1 *) (&$e.m_storage.dummy_.data[0]))
+ )
+ )
+ #else
+ (
+ "?"
+ )
+ )
+}
+
+; BOOST_VISUALIZER_END boost::optional
+;-----------------------------------------------------------

Modified: sandbox/boost_docs/subprojects/DebuggerVisualizers/boost__ptr_container.msvc8.vis.txt
==============================================================================
--- sandbox/boost_docs/subprojects/DebuggerVisualizers/boost__ptr_container.msvc8.vis.txt (original)
+++ sandbox/boost_docs/subprojects/DebuggerVisualizers/boost__ptr_container.msvc8.vis.txt 2008-04-04 03:59:34 EDT (Fri, 04 Apr 2008)
@@ -6,7 +6,7 @@
 ; or copy at http://www.boost.org/LICENSE_1_0.txt)
 ;
 ; @guid CDC4F187-4AE8-40f2-A1CA-4F5913BC2778
-; @platform msvc-8
+; @platform msvc-8, msvc-9
 ; @version 1.0
 ; @author Bill Buklis
 ; @email bill at pbjzone dot com


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