Debian Package rebuild

Rebuild of the Debian archive with clang

"Unqualified lookup into dependent bases of class templates" build failure(s)
clang 6.0
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
adanaxisgpl 1.2.5.dfsg.1-6./Mushcore/MushcoreSingleton.h:86:5: error: use of undeclared identifier 'SingletonPtrSet' Log
attal 1.0~rc2-2math.h:697:47: error: use of undeclared identifier '__issignalingf'; did you mean '__issignaling'? Log
ext3grep 0.10.2-3./ext3.h:120:40: error: use of undeclared identifier 'i_dir_acl'; did you mean 'dir_acl'? Log 755542
fmit 1.0.0-1Music.h:288:16: error: use of undeclared identifier 'pow10' Log
freefem++ 3.47+dfsg1-2AFunction.cpp:43:36: error: use of undeclared identifier 'isnan' Log
gauche-gtk 0.6+git20160927-1glgdGraph.c:907:30: error: use of undeclared identifier 'HUGE' Log
gnuift 0.1.14+ds-1perl-compile-test-program.cc:71:3: error: use of undeclared identifier 'my_perl' Log
kadu 4.1-1.1wchar2.h:291:14: error: use of undeclared identifier '__builtin_va_arg_pack' Log
kcov 25+dfsg-1ptrace.cc:337:17: error: use of undeclared identifier 'SIGUNUSED' Log
netxx 0.3.2-2Netbuf.h:116:5: error: use of undeclared identifier 'setp' Log
ngetty 1.1-3ngetty.c:184:3: error: use of undeclared identifier '_NSIG_WORDS' Log
pymssql 2.1.3+dfsg-1_mssql.c:21102:15: error: use of undeclared identifier 'DBVERSION_80' Log
sciscipy 1.0.1-2util.c:27:38: error: use of undeclared identifier 'pvApiCtx' Log
spaced 1.0.2+dfsg-1./sort.h:372:10: error: use of undeclared identifier 'omp_get_thread_num' Log
sqsh 2.1.7-4cmd_connect.c:809:23: error: use of undeclared identifier 'CS_TDS_80' Log
vdr-plugin-infosatepg 0.0.12-6infosatepg.cpp:97:14: error: use of undeclared identifier 'Channels'; did you mean 'ChannelID'? Log
vdr-plugin-remoteosd 1.0.0-5menu.c:72:23: error: use of undeclared identifier 'Channels' Log
vifm 0.9.1-1abbrevs/suite.c:5:1: error: use of undeclared identifier 'stic_setup_once_func' Log
wget2 0.0.20170806-1ssl_gnutls.c:1265:132: error: use of undeclared identifier 'writev' Log
19 errors
Return to the list