Building Fix for a negative value check for gcc < 4.8
This commit is contained in:
parent
c4e333bc8b
commit
96edb762c7
|
@ -1,3 +1,6 @@
|
||||||
|
2018-10-26 Markus Gans <guru.mail@muenster.de>
|
||||||
|
* Building Fix for a negative value check (gcc < 4.8)
|
||||||
|
|
||||||
2018-10-21 Markus Gans <guru.mail@muenster.de>
|
2018-10-21 Markus Gans <guru.mail@muenster.de>
|
||||||
* Moving static attributes from FApplication to FWidget
|
* Moving static attributes from FApplication to FWidget
|
||||||
|
|
||||||
|
|
|
@ -1192,7 +1192,7 @@ bool FString::operator > (const FString& s) const
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
const FString& FString::insert (const FString& s, int pos)
|
const FString& FString::insert (const FString& s, int pos)
|
||||||
{
|
{
|
||||||
if ( pos < 0 || uInt(pos) > length )
|
if ( isNegative(pos) || uInt(pos) > length )
|
||||||
throw std::out_of_range("");
|
throw std::out_of_range("");
|
||||||
|
|
||||||
_insert (uInt(pos), s.length, s.string);
|
_insert (uInt(pos), s.length, s.string);
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
#include <cwchar>
|
#include <cwchar>
|
||||||
#include <cwctype>
|
#include <cwctype>
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <new>
|
#include <new>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
@ -134,9 +135,9 @@ class FString
|
||||||
const FString& operator >> (float&);
|
const FString& operator >> (float&);
|
||||||
|
|
||||||
template <typename IndexT>
|
template <typename IndexT>
|
||||||
wchar_t& operator [] (IndexT);
|
wchar_t& operator [] (const IndexT);
|
||||||
template <typename IndexT>
|
template <typename IndexT>
|
||||||
const wchar_t& operator [] (IndexT) const;
|
const wchar_t& operator [] (const IndexT) const;
|
||||||
const FString& operator () ();
|
const FString& operator () ();
|
||||||
|
|
||||||
bool operator < (const FString&) const;
|
bool operator < (const FString&) const;
|
||||||
|
@ -289,9 +290,9 @@ inline const char* FString::getClassName()
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
template <typename IndexT>
|
template <typename IndexT>
|
||||||
inline wchar_t& FString::operator [] (IndexT pos)
|
inline wchar_t& FString::operator [] (const IndexT pos)
|
||||||
{
|
{
|
||||||
if ( pos < 0 || pos >= IndexT(length) )
|
if ( isNegative(pos) || pos >= IndexT(length) )
|
||||||
throw std::out_of_range(""); // Invalid index position
|
throw std::out_of_range(""); // Invalid index position
|
||||||
|
|
||||||
return string[std::size_t(pos)];
|
return string[std::size_t(pos)];
|
||||||
|
@ -299,9 +300,9 @@ inline wchar_t& FString::operator [] (IndexT pos)
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
template <typename IndexT>
|
template <typename IndexT>
|
||||||
inline const wchar_t& FString::operator [] (IndexT pos) const
|
inline const wchar_t& FString::operator [] (const IndexT pos) const
|
||||||
{
|
{
|
||||||
if ( pos < 0 || pos >= IndexT(length) )
|
if ( isNegative(pos) || pos >= IndexT(length) )
|
||||||
throw std::out_of_range(""); // Invalid index position
|
throw std::out_of_range(""); // Invalid index position
|
||||||
|
|
||||||
return string[std::size_t(pos)];
|
return string[std::size_t(pos)];
|
||||||
|
@ -378,7 +379,7 @@ inline FString::iterator FString::end() const
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
inline wchar_t FString::front() const
|
inline wchar_t FString::front() const
|
||||||
{
|
{
|
||||||
assert( ! isEmpty() );
|
assert ( ! isEmpty() );
|
||||||
return string[0];
|
return string[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#define null NULL
|
#define null NULL
|
||||||
|
@ -60,6 +61,30 @@ typedef long double lDouble;
|
||||||
namespace finalcut
|
namespace finalcut
|
||||||
{
|
{
|
||||||
|
|
||||||
|
template <typename T, bool is_signed>
|
||||||
|
struct is_negative
|
||||||
|
{
|
||||||
|
inline bool operator () (const T& x)
|
||||||
|
{
|
||||||
|
return x < 0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
struct is_negative<T,false>
|
||||||
|
{
|
||||||
|
inline bool operator () (const T&)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
inline bool isNegative (const T& x)
|
||||||
|
{
|
||||||
|
return is_negative<T, std::numeric_limits<T>::is_signed>()(x);
|
||||||
|
}
|
||||||
|
|
||||||
namespace fc
|
namespace fc
|
||||||
{
|
{
|
||||||
#pragma pack(push)
|
#pragma pack(push)
|
||||||
|
|
Loading…
Reference in New Issue