Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

almost 5 years ago

Language

C++

Compiler

gcc 7.3.0

Options
Warnings
Don't Use Boost
C++11(GNU)
no pedantic

Author

anonymous

almost 5 years ago

$ g++ prog.cc -Wall -Wextra -std=gnu++11
prog.cc: In function 'void bar()':
prog.cc:12:32: warning: capture of variable 'static_int' with non-automatic storage duration
     const auto moreIncrease = [static_int]() noexcept { ++static_int; };
                                ^~~~~~~~~~
prog.cc:4:16: note: 'int static_int' declared here
     static int static_int = 10;
                ^~~~~~~~~~
10
11
12
13
Exit Code:
0