~kdevelop/kdevplatform/master

« back to all changes in this revision

Viewing changes to template/templates/namespace_use_cpp.txt

  • Committer: Friedrich W. H. Kossebau
  • Date: 2017-08-13 21:54:31 UTC
  • Revision ID: git-v1:8ce76bea4df0831deb2fb243af33cc90d3cc8043
Wipe master branch and point in README to new location

Summary: also add util script for moving over existing personal branches

Reviewers: #kdevelop, apol, kfunk

Reviewed By: #kdevelop, apol, kfunk

Subscribers: kfunk, kdevelop-devel

Differential Revision: https://phabricator.kde.org/D7244

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% if namespaces %}
2
 
using namespace {% for ns in namespaces %}{{ ns }}{% if not forloop.last %}::{% endif %}{% endfor %};
3
 
{% endif %}