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.33 by root, Mon Oct 12 14:00:58 2009 UTC vs.
Revision 1.35 by root, Fri Nov 6 13:45:28 2009 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * 5 *
6 * Deliantra is free software: you can redistribute it and/or modify it under 6 * Deliantra is free software: you can redistribute it and/or modify it under
7 * the terms of the Affero GNU General Public License as published by the 7 * the terms of the Affero GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your 8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version. 9 * option) any later version.
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