str.cc (5547:747034106af4) str.cc (7494:249f174e6f37)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 320 unchanged lines hidden (view full) ---

329STN(unsigned long);
330STN(signed long);
331STN(unsigned int);
332STN(signed int);
333STN(unsigned short);
334STN(signed short);
335STN(unsigned char);
336STN(signed char);
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 320 unchanged lines hidden (view full) ---

329STN(unsigned long);
330STN(signed long);
331STN(unsigned int);
332STN(signed int);
333STN(unsigned short);
334STN(signed short);
335STN(unsigned char);
336STN(signed char);
337STN(char);
337
338template<>
339bool to_number<bool>(const string &value, bool &retval)
340{
341 string lowered = to_lower(value);
342
343 if (value == "0") {
344 retval = false;

--- 30 unchanged lines hidden ---
338
339template<>
340bool to_number<bool>(const string &value, bool &retval)
341{
342 string lowered = to_lower(value);
343
344 if (value == "0") {
345 retval = false;

--- 30 unchanged lines hidden ---