aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parse_tree.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-08-19 11:35:24 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-08-19 11:35:24 -0700
commitb59904632dd30a5101d459afca56fa3c48f48f12 (patch)
tree917af0d2dff5492b209bb024de7dc69d90619e5d /src/parse_tree.cpp
parentc1b9b27f860235e604cc4eed85a87fdc01b0b4f1 (diff)
Rewrite parse_util_unescape_wildcards
Make it simpler, and use wcstring instead of wcsdup
Diffstat (limited to 'src/parse_tree.cpp')
-rw-r--r--src/parse_tree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse_tree.cpp b/src/parse_tree.cpp
index 6238ad06..1e16bf15 100644
--- a/src/parse_tree.cpp
+++ b/src/parse_tree.cpp
@@ -325,7 +325,7 @@ static wcstring block_type_user_presentable_description(parse_token_type_t type)
}
/** Returns a string description of the given parse node */
-wcstring parse_node_t::describe(void) const
+wcstring parse_node_t::describe() const
{
wcstring result = token_type_description(type);
if (type < FIRST_TERMINAL_TYPE)