~ubuntu-branches/ubuntu/dapper/boost/dapper

« back to all changes in this revision

Viewing changes to libs/wave/test/testwave/testfiles/t_5_002.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Domenico Andreoli, Christophe Prud'homme, Domenico Andreoli
  • Date: 2006-01-11 11:11:42 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060111111142-xy6z1i5himlgu8iw
Tags: 1.33.1-2
[ Christophe Prud'homme ]
* Bug fix: "libboost-wave-dev: Dependency on libboost-filesystem-dev
  missing", thanks to Martin v . Löwis (Closes: #346367).

[ Domenico Andreoli ]
* boost/graph/topological_sort.hpp: removed name of unused parameter
  to prevent long compiler warning.  Closes: #347519.
* Applied patch from upstream CVS to fix parsing of valid options
  with a common root.  Closes: #345714.
* libboost-python-dev now correctly depends on python2.4-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
FUNC(ab, cd, ef)        //R abcdef 
34
34
 
35
35
// 2.3: In a string literal.
36
 
//R #line 38 "t_5_002.cpp"
 
36
//R #line 37 "t_5_002.cpp"
37
37
"abc\
38
38
de"                     //R "abcde" 
39
39
 
40
40
// 2.4: <backslash><newline> in midst of an identifier.
41
 
//R #line 44 "t_5_002.cpp"
 
41
//R #line 43 "t_5_002.cpp"
42
42
#define ABCDE 5
43
43
ABC\
44
44
DE                      //R 5 
45
45
 
46
46
// 2.5: <backslash><newline> by trigraph. 
47
 
//R #line 49 "t_5_002.cpp"
 
47
//R #line 48 "t_5_002.cpp"
48
48
ABC??/
49
49
DE                      //R 5 
50
50