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

Comparing deliantra/server/include/shstr.h (file contents):
Revision 1.34 by root, Tue Nov 3 23:44:21 2009 UTC vs.
Revision 1.35 by root, Fri Nov 6 13:45:28 2009 UTC

128inline int strlen (shstr_tmp sh) 128inline int strlen (shstr_tmp sh)
129{ 129{
130 return sh.length (); 130 return sh.length ();
131} 131}
132 132
133static std::ostream &operator <<(std::ostream &o, shstr_tmp sh) 133static inline std::ostream &operator <<(std::ostream &o, shstr_tmp sh)
134{ 134{
135 o.write (sh.s, sh.length ()); 135 o.write (sh.s, sh.length ());
136 136
137 return o; 137 return o;
138} 138}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines