Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 134180 - doxygen 1.4.6 don't need in 04_amd64_qtools.patch
Summary: doxygen 1.4.6 don't need in 04_amd64_qtools.patch
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: AMD64 Linux
: High normal (vote)
Assignee: Steve Arnold
URL:
Whiteboard:
Keywords:
: 134450 (view as bug list)
Depends on:
Blocks:
 
Reported: 2006-05-24 02:31 UTC by Kirill A. Korinsky
Modified: 2006-05-27 14:55 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kirill A. Korinsky 2006-05-24 02:31:55 UTC
Doxygen 1.4.6 or later don't need in 04_amd64_qtools.patch, because it have included in official sources tree
Comment 1 Steve Arnold archtester gentoo-dev 2006-05-24 19:18:22 UTC
The patch applies just fine on my amd64 box.  This is the code in the upstream tarball:

public:
    QValueStack() {}
   ~QValueStack() {}
    void  push( const T& d ) { append(d); }
    T pop()
    {
        T elem( this->last() );
        if ( !this->isEmpty() )
            remove( this->fromLast() );
        return elem;
    }
    T& top() { return this->last(); }
    const T& top() const { return this->last(); }
};

I don't see the patch.
Comment 2 Jakub Moc (RETIRED) gentoo-dev 2006-05-26 13:57:43 UTC
*** Bug 134450 has been marked as a duplicate of this bug. ***
Comment 3 Steve Arnold archtester gentoo-dev 2006-05-27 10:54:07 UTC
Okay, something weird is going on here; what version(s) of Qt are installed on your respective machines?
Comment 4 Steve Arnold archtester gentoo-dev 2006-05-27 14:55:04 UTC
Fixed.