Debian Package rebuild

Rebuild of the Debian archive with clang

"Unqualified lookup into dependent bases of class templates" build failure(s)
clang 4.0.1
Return to the list
This problem is that g++ accepts code which should be refused. g++ is doing an unqualified lookup into dependent bases of class templates. See the official website.
The attached code clearly shows the issue and the fix:
#include <vector>

template class A: public std::vector {
public:
	void del() {
        // The right syntax is:
        // this->erase(std::vector::begin());
        erase(std::vector::begin());
	}

};

void foo() {
    A B;
    B.del();	
}

Versions: 2.9 - 3.0 - 3.1 - 3.2 - 3.3 - 3.4 - 3.4.2 - 3.5.0 - 3.6.0 - 3.8.1 - 3.9.1 - 4.0.1 - 5.0 - 6.0 - 8.0.1 - 9.0.1 - 10.0.0 - 11.0.0 - 12.0.1 - 13.0.0
PackageVersionSupposed error messageFull log Bug report
abiword 3.0.2-2gr_UnixCairoGraphics.cpp:183:37: error: use of undeclared identifier 'nullptr' Log
adanaxisgpl 1.2.5.dfsg.1-6./Mushcore/MushcoreSingleton.h:86:5: error: use of undeclared identifier 'SingletonPtrSet' Log
android-platform-dalvik 7.0.0+r33-1debian/additionalSrc/dmtracedump/tracedump.cc:252:14: error: use of undeclared identifier 'nullptr' Log
canu 1.5+dfsg-1stores/gkStore.H:543:59: error: use of undeclared identifier 'omp_get_thread_num' Log
gelemental 1.2.0-10refptr.h:82:70: error: use of undeclared identifier 'nullptr' Log
gnome-color-chooser 0.2.5-1.1refptr.h:82:70: error: use of undeclared identifier 'nullptr' Log
gnuift 0.1.14+ds-1perl-compile-test-program.cc:71:3: error: use of undeclared identifier 'my_perl' Log
gpick 0.2.5+git20161221-1source/gtk/ColorCell.cpp:47:84: error: use of undeclared identifier 'nullptr' Log
gtkglextmm 1.2.0-8refptr.h:82:70: error: use of undeclared identifier 'nullptr' Log
kadu 4.1-1stdio2.h:34:27: error: use of undeclared identifier '__builtin_va_arg_pack' Log
libpwiz 3.0.10827-3pwiz/analysis/demux/IPrecursorMaskCodec.hpp:87:76: error: use of undeclared identifier 'stof'; did you mean 'atof'? Log 758322
log4cpp 1.1.1-3PThreads.cpp:15:13: error: use of undeclared identifier 'free' Log
lostirc 0.4.6-4.2refptr.h:82:70: error: use of undeclared identifier 'nullptr' Log
meshlab 1.3.2+dfsg1-3../../../../vcglib/vcg/space/deprecated_point.h:167:30: error: use of undeclared identifier 'static_assert'; did you mean 'static_cast'? Log
moonshot-gss-eap 0.9.5-3ddf.h:120:32: error: use of undeclared identifier 'nullptr' Log
mozc 2.19.2623.102+dfsg-1../../base/mutex.cc:165:3: error: use of undeclared identifier 'static_assert'; did you mean 'static_cast'? Log
netxx 0.3.2-2Netbuf.h:116:5: error: use of undeclared identifier 'setp' Log
nordugrid-arc 5.3.1-2refptr.h:82:70: error: use of undeclared identifier 'nullptr' Log
open-invaders 0.3-4.3init.cc:643:10: error: use of undeclared identifier 'nullptr' Log
opensaml2 2.6.0-4exceptions.h:155:45: error: use of undeclared identifier 'nullptr' Log
pcb2gcode 1.1.4-git20120902-1.1refptr.h:82:70: error: use of undeclared identifier 'nullptr' Log
postal 0.75./smtp.h:28:58: error: use of undeclared identifier 'hash' Log
shibboleth-sp2 2.6.0+dfsg1-4Lockable.h:70:33: error: use of undeclared identifier 'nullptr' Log
spaced 1.0.2+dfsg-1./sort.h:372:10: error: use of undeclared identifier 'omp_get_thread_num' Log
taglib 1.11.1+dfsg.1-0.1tstring.cpp:68:23: error: use of undeclared identifier 'U' Log
vifm 0.9-1abbrevs/suite.c:5:1: error: use of undeclared identifier 'stic_setup_once_func' Log
26 errors
Return to the list