2
0
mirror of https://github.com/boostorg/spirit.git synced 2026-01-19 04:42:11 +00:00

Spirit: fixed violation reported by inspect

[SVN r59131]
This commit is contained in:
Hartmut Kaiser
2010-01-18 17:26:26 +00:00
parent 958b8d070f
commit 9209b76661

View File

@@ -6,7 +6,7 @@
// The purpose of this example is to show how to parse arbitrary key/value
// pairs delimited by some separator into a std::map. Parsing the URL query
// format is the example we use to demonstrate how this can be done
// (i.e. things like: key1=value1;key2=value2;;keyN=valueN).
// (i.e. things like: key1=value1;key2=value2;...;keyN=valueN).
//
// For a more elaborate explanation see here: http://spirit.sourceforge.net/home/?p=371