diff options
author | David Robillard <d@drobilla.net> | 2009-06-29 01:07:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-29 01:07:02 +0000 |
commit | 8aa28fc6f34208ce3562dd8edcbecd028a61fd17 (patch) | |
tree | 770a48f5a498d8c915bfb881804ca4f541e6b3c1 /src/pprint.cpp | |
parent | f5ea52df50d4b199904c42cadff3917621f336db (diff) | |
download | resp-8aa28fc6f34208ce3562dd8edcbecd028a61fd17.tar.gz resp-8aa28fc6f34208ce3562dd8edcbecd028a61fd17.tar.bz2 resp-8aa28fc6f34208ce3562dd8edcbecd028a61fd17.zip |
More documentation fixes.
git-svn-id: http://svn.drobilla.net/resp/tuplr@167 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/pprint.cpp')
-rw-r--r-- | src/pprint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pprint.cpp b/src/pprint.cpp index f156462..adf4ece 100644 --- a/src/pprint.cpp +++ b/src/pprint.cpp @@ -92,10 +92,10 @@ pprint_internal(ostream& out, const AST* ast, unsigned indent) } } +/// Pretty-print @a ast to @a out void pprint(ostream& out, const AST* ast) { pprint_internal(out, ast, 0); out << endl; } - |