Compare commits
14 Commits
esp-idf-co
...
svn-branch
Author | SHA1 | Date | |
---|---|---|---|
070958fa84 | |||
e14e0fc3ba | |||
3ebabcb2d8 | |||
63f6e7f45e | |||
43eac5bb12 | |||
74674531c8 | |||
a4572497be | |||
951b49f992 | |||
1afed544db | |||
66c366d18a | |||
472a68c920 | |||
3e33d4a200 | |||
95c864e119 | |||
4669cd828c |
0
doc/html/boostbook.css
Executable file → Normal file
BIN
doc/html/images/callouts/1.png
Normal file
After Width: | Height: | Size: 391 B |
BIN
doc/html/images/callouts/10.png
Normal file
After Width: | Height: | Size: 485 B |
BIN
doc/html/images/callouts/11.png
Normal file
After Width: | Height: | Size: 410 B |
BIN
doc/html/images/callouts/12.png
Normal file
After Width: | Height: | Size: 488 B |
BIN
doc/html/images/callouts/13.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
doc/html/images/callouts/14.png
Normal file
After Width: | Height: | Size: 499 B |
BIN
doc/html/images/callouts/15.png
Normal file
After Width: | Height: | Size: 507 B |
BIN
doc/html/images/callouts/2.png
Normal file
After Width: | Height: | Size: 446 B |
BIN
doc/html/images/callouts/3.png
Normal file
After Width: | Height: | Size: 431 B |
BIN
doc/html/images/callouts/4.png
Normal file
After Width: | Height: | Size: 441 B |
BIN
doc/html/images/callouts/5.png
Normal file
After Width: | Height: | Size: 423 B |
BIN
doc/html/images/callouts/6.png
Normal file
After Width: | Height: | Size: 431 B |
BIN
doc/html/images/callouts/7.png
Normal file
After Width: | Height: | Size: 397 B |
BIN
doc/html/images/callouts/8.png
Normal file
After Width: | Height: | Size: 434 B |
BIN
doc/html/images/callouts/9.png
Normal file
After Width: | Height: | Size: 420 B |
BIN
doc/html/images/caution.png
Executable file
After Width: | Height: | Size: 4.2 KiB |
BIN
doc/html/images/home.png
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
doc/html/images/important.png
Executable file
After Width: | Height: | Size: 4.6 KiB |
BIN
doc/html/images/next.png
Executable file
After Width: | Height: | Size: 768 B |
BIN
doc/html/images/note.png
Executable file
After Width: | Height: | Size: 4.5 KiB |
BIN
doc/html/images/prev.png
Executable file
After Width: | Height: | Size: 741 B |
BIN
doc/html/images/tip.png
Executable file
After Width: | Height: | Size: 3.8 KiB |
BIN
doc/html/images/up.png
Executable file
After Width: | Height: | Size: 766 B |
BIN
doc/html/images/warning.png
Executable file
After Width: | Height: | Size: 3.8 KiB |
1676
doc/optional.html
Normal file
1
test/.cvsignore
Normal file
@ -0,0 +1 @@
|
||||
bin
|
23
test/optional_test_ref_fail2.cpp
Normal file
@ -0,0 +1,23 @@
|
||||
// Copyright (C) 2003, Fernando Luis Cacciola Carballal.
|
||||
//
|
||||
// Use, modification, and distribution is 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)
|
||||
//
|
||||
// See http://www.boost.org/lib/optional for documentation.
|
||||
//
|
||||
// You are welcome to contact the author at:
|
||||
// fernando_cacciola@hotmail.com
|
||||
//
|
||||
#include "boost/optional.hpp"
|
||||
|
||||
//
|
||||
// THIS TEST SHOULD FAIL TO COMPILE
|
||||
//
|
||||
void optional_reference__test_no_ptr_access()
|
||||
{
|
||||
boost::optional<int&> opt ;
|
||||
opt.get_ptr();
|
||||
}
|
||||
|
||||
|