aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-10-14 00:27:15 +0000
committerDavid Robillard <d@drobilla.net>2010-10-14 00:27:15 +0000
commitf649096bc715541c6b861f13c6710eda970b78ce (patch)
tree1156e75f8e8da75d6ac798ef8f1057985efa9f79 /src/resp.hpp
parent0faa00e9dfd221016ad26b5629617949fcce4676 (diff)
downloadresp-f649096bc715541c6b861f13c6710eda970b78ce.tar.gz
resp-f649096bc715541c6b861f13c6710eda970b78ce.tar.bz2
resp-f649096bc715541c6b861f13c6710eda970b78ce.zip
Prefix internal "me" parameter with underscore.
git-svn-id: http://svn.drobilla.net/resp/resp@271 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.hpp')
-rw-r--r--src/resp.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index 3145080..a7080fe 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -241,7 +241,7 @@ struct ALiteral : public AST {
const T val;
};
-/// Lexeme (any atom in the CST, e.g. "a", "3.4", ""hello"", etc.
+/// Lexeme (any atom in the CST, e.g. "a", "3.4", ""hello"", etc.)
struct ALexeme : public AST, public std::string {
ALexeme(Cursor c, const string& s) : AST(c), std::string(s) {}
bool operator==(const AST& rhs) const { return this == &rhs; }