mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 02:26:39 +01:00
Remove ancient/unused flowcanvas and libglademm from repository.
Update libraries to latest stable released version (except gnomecanvasmm, which is strangely packaged...). Fixes building (at least here). git-svn-id: svn://localhost/ardour2/trunk@2790 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
0e31c56591
commit
35fc31a1de
1550 changed files with 362440 additions and 73136 deletions
|
|
@ -2,7 +2,7 @@
|
|||
#ifndef _GLIBMM_USTRING_H
|
||||
#define _GLIBMM_USTRING_H
|
||||
|
||||
/* $Id: ustring.h,v 1.15 2006/09/19 20:48:15 murrayc Exp $ */
|
||||
/* $Id: ustring.h 369 2007-01-20 10:19:33Z daniel $ */
|
||||
|
||||
/* Copyright (C) 2002 The gtkmm Development Team
|
||||
*
|
||||
|
|
@ -729,7 +729,7 @@ const ustring_Iterator<T> ustring_Iterator<T>::operator++(int)
|
|||
template <class T> inline
|
||||
ustring_Iterator<T>& ustring_Iterator<T>::operator--()
|
||||
{
|
||||
do --pos_; while((*pos_ & '\xC0') == '\x80');
|
||||
do --pos_; while((static_cast<unsigned char>(*pos_) & 0xC0u) == 0x80);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue