aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-17 19:37:46 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-17 19:38:08 -0700
commit86645b32e172301088517bfb860b2e0990b3e5ec (patch)
tree3a085358e6a382074c7569b997a006f2765b7c73 /builtin.h
parent977c585f8be898e327221911b505da577619520a (diff)
Work towards getting function.h off of shared_ptr
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin.h b/builtin.h
index f2093780..a34c83cb 100644
--- a/builtin.h
+++ b/builtin.h
@@ -155,9 +155,9 @@ void builtin_pop_io(parser_t &parser);
/**
- Return a one-line description of the specified builtin. This is usually a truly constant string, so we should not wrap it in a wcstring.
+ Return a one-line description of the specified builtin.
*/
-const wchar_t *builtin_get_desc( const wcstring &b );
+wcstring builtin_get_desc( const wcstring &b );
/**