Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions libraries/openexr/IlmImf/ImfAttribute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
#include "Iex.h"
#include <string.h>
#include <map>
#include <algorithm>
#include <functional>

#include "ImfNamespace.h"

Expand Down
10 changes: 5 additions & 5 deletions windows/cmedit/StdString.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
// - Jim Cline
// - Jeff Kohn
// - Todd Heckel
// - Ullrich Poll�hne
// - Ullrich Poll�hne
// - Joe Vitaterna
// - Joe Woodbury
// - Aaron (no last name)
Expand Down Expand Up @@ -212,7 +212,7 @@
// 2000-APR-17 - Thanks to Joe Vitaterna for pointing out that ReverseFind
// is supposed to be a const function.
//
// 2000-MAR-07 - Thanks to Ullrich Poll�hne for catching a range bug in one
// 2000-MAR-07 - Thanks to Ullrich Poll�hne for catching a range bug in one
// of the overloads of assign.
//
// 2000-FEB-01 - You can now use CStdString on the Mac with CodeWarrior!
Expand Down Expand Up @@ -714,7 +714,7 @@ inline const Type& SSMAX(const Type& arg1, const Type& arg2)
#endif
#define SS_USE_FACET(loc, fac) std::use_facet<fac >(loc)
#elif defined(_MSC_VER )
#define SS_USE_FACET(loc, fac) std::_USE(loc, fac)
#define SS_USE_FACET(loc, fac) std::use_facet<fac>(loc)

// ...and
#elif defined(_RWSTD_NO_TEMPLATE_ON_RETURN_TYPE)
Expand Down Expand Up @@ -2090,7 +2090,7 @@ class CStdStr : public std::basic_string<CT>
// <nChars> or the NULL terminator, whichever comes first. Since we
// are about to call a less forgiving overload (in which <nChars>
// must be a valid length), we must adjust the length here to a safe
// value. Thanks to Ullrich Poll�hne for catching this bug
// value. Thanks to Ullrich Poll�hne for catching this bug

nChars = SSMIN(nChars, str.length() - nStart);

Expand Down Expand Up @@ -2121,7 +2121,7 @@ class CStdStr : public std::basic_string<CT>
// <nChars> or the NULL terminator, whichever comes first. Since we
// are about to call a less forgiving overload (in which <nChars>
// must be a valid length), we must adjust the length here to a safe
// value. Thanks to Ullrich Poll�hne for catching this bug
// value. Thanks to Ullrich Poll�hne for catching this bug

nChars = SSMIN(nChars, str.length() - nStart);

Expand Down