metaclass: (Default)
metaclass ([personal profile] metaclass) wrote2012-06-17 01:33 pm

Крестики же.

Вот жеж страуструпъ намутил, блин.
const/не-const
указатель/ссылка/значение
куча/стек

[identity profile] nicka-startcev.livejournal.com 2012-06-17 12:22 pm (UTC)(link)
варнинг не вижу. Как получить?

$ cat a.cpp
enum materials
{
  wood,
  steel,
  glass,
  shit
};

int main()
{
  return true;
}

int foo()
{
  return false;
}

int bar (materials a)
{
  return a+1;
}


$ g++ -W -Wall a.cpp 
$

[identity profile] gds.livejournal.com 2012-06-17 01:22 pm (UTC)(link)
В РОТ МНЕ НОГИ, ТЫ СЛОМАЛ ТИПЫ, ДЕМОН!!1111

[identity profile] nivanych.livejournal.com 2012-06-17 02:18 pm (UTC)(link)
Не надо было помещать строчки
$ g++ -W -Wall a.cpp
$
внутрь a.cpp!!

[identity profile] bitfield.livejournal.com 2012-06-17 07:30 pm (UTC)(link)
s/enum/enum class/

$ g++ --std==c++0x