diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-10-20 20:34:28 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-10-20 20:34:28 -0700 |
commit | d7ac5e2e0cb0521af1628e95774ad418af82af58 (patch) | |
tree | 2fca26ab47941b0511de460de0fc58f0a2882024 /docs/samples/xpath_select.cpp | |
parent | fcd1876a21593bd62580383874b57c734d629a0c (diff) | |
parent | 7258aea09be1847b3dcc99ca389990027d4a92d3 (diff) |
Merge branch 'master' into compact
Diffstat (limited to 'docs/samples/xpath_select.cpp')
-rw-r--r-- | docs/samples/xpath_select.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/samples/xpath_select.cpp b/docs/samples/xpath_select.cpp index 51ede61..74dad60 100644 --- a/docs/samples/xpath_select.cpp +++ b/docs/samples/xpath_select.cpp @@ -18,7 +18,7 @@ int main() std::cout << node.node().attribute("Filename").value() << "\n"; } - pugi::xpath_node build_tool = doc.select_single_node("//Tool[contains(Description, 'build system')]"); + pugi::xpath_node build_tool = doc.select_node("//Tool[contains(Description, 'build system')]"); if (build_tool) std::cout << "Build tool: " << build_tool.node().attribute("Filename").value() << "\n"; |