root.SX

Personal Blog of a Belgian

Archives

  • avril 2016
  • août 2015
  • février 2015
  • décembre 2014
  • septembre 2014
  • mars 2014
  • octobre 2013
  • mai 2013
  • février 2013
  • janvier 2013

Meta

  • Connexion

Étiquette : 5.3

[SOLVED] fatal error: ‘TargetConditionals.h’ file not found

23 septembre 2014 par root·0 Commentaires

# vim ~/Qt/5.3/clang_64/mkspecs/qdevice.pri
Change the following line:
!host_build:QMAKE_MAC_SDK = macosx10.8
By
!host_build:QMAKE_MAC_SDK = macosx10.9

Source : http://stackoverflow.com/a/25962088

[SOLVED] addition of default argument on redeclaration makes this constructor a default constructor

23 septembre 2014 par root·0 Commentaires

Wrong code:

void foo(int x = 42, int y = 21)
{
...
}

Correct code:

void foo(int x = 42, int y = 21);
void foo(int x, int y)
{
...
}

Source : http://stackoverflow.com/a/4989591

Fièrement propulsé par WordPress. Thème Flat 1.7.11 par Themeisle
Nous utilisons des cookies pour vous garantir la meilleure expérience sur notre site. Si vous continuez à utiliser ce dernier, nous considérerons que vous acceptez l'utilisation des cookies.Ok