ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/shstr.C
(Generate patch)

Comparing deliantra/server/common/shstr.C (file contents):
Revision 1.54 by root, Sun Nov 25 02:17:31 2018 UTC vs.
Revision 1.55 by root, Sat Dec 1 20:22:12 2018 UTC

76shstr::find (const char *s) 76shstr::find (const char *s)
77{ 77{
78 if (!s) 78 if (!s)
79 return s; 79 return s;
80 80
81 auto (i, ht.find (s)); 81 auto i = ht.find (s);
82 82
83 return i != ht.end ()? *i : 0; 83 return i != ht.end ()? *i : 0;
84} 84}
85 85
86const char * 86const char *

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines