MᏫᎻᎯᎷᎷᎬᎠ
Thanks again a lot
It's important yet it's simple Since you know C it will be easy
Anonymous
I think I know C close to absolutely knowing) But I'm done
MᏫᎻᎯᎷᎷᎬᎠ
MᏫᎻᎯᎷᎷᎬᎠ
It's a reference
BinaryByter
:D
BinaryByter
olli
BinaryByter
¯\_(ツ)_/¯
BinaryByter
wait what do you mean ill formed?
BinaryByter
what about is ill formed?
BinaryByter
WILLSTE STRESS? HUH?
BinaryByter
olli
what about is ill formed?
have you tried running it?
BinaryByter
no ¯\_(ツ)_/¯
olli
what about is ill formed?
<source>:4:11: error: no member named 'ref' in namespace 'std' [a = std::ref(std::cout << "hello")]() {a << " world\n";}(); ~~~~~^ <source>:4:41: error: use of undeclared identifier 'a' [a = std::ref(std::cout << "hello")]() {a << " world\n";}(); ^ 2 errors generated. Compiler returned: 1 using correct headers <source>:5:43: error: invalid operands to binary expression ('const std::reference_wrapper<std::basic_ostream<char> >' and 'const char [8]') [a = std::ref(std::cout << "hello")]() {a << " world\n";}(); ~ ^ ~~~~~~~~~~ 1 error generated. Compiler returned: 1
klimi
#ot
Dima
#ot
Oooo Kurimi is back!
Dima
Welcome
klimi
Thanks
klimi
Welcome
Can you add me to the admin group?
Dima
I added you twice but the last one you blocked
klimi
Hmmmm
Shakthi
/save
BinaryByter
klimi
You sure
klimi
Dima
no
that should be looking like printf("%s, %s", "Hello", "World!");
Anonymous
Ok thanks
klimi
No problem
Anonymous
Hey, guys, work is underway continue with developing avtation drivers. In addition, you need to build an ARINC RTOS graphics stack.
Anonymous
if only I get this job i need help
Anonymous
Im going to maintain all this crap remotely)
klimi
That's interesting
Anonymous
klimi
Wanna try?
To manage all stuff remotely? Nah thanks
Anonymous
Now it is the only driver that is close to passing through the Khronos conformance test suit.
Anonymous
https://www.khronos.org/opengl/
Anonymous
Im really interested. How many patterns you know,. and how many ones you do use in practice?😏
klimi
:)
Anonymous
👍
Anonymous
Everyone is keeping silence...😐
Anonymous
Hlw everyone
Anonymous
Hi! :)
Anonymous
Let's discuss patterns. Its a slightly slippery topic.)
Anonymous
Please, don't ban me for my question. Мe and my colleagues spawned a huge holywar. The question: is co-pilot helps to code better, and a bit creatively? But it must be used relatively rare. Projects deadline, code review...
Ariana
what
Bader
are you saying that patterns are important for certain aspects of a project?
Anonymous
are you saying that patterns are important for certain aspects of a project?
I'm simply interesting about how meaningful the using patterns in practice.
olli
let's stick to C++ discussions in here :)
Elnee
I knew that C++ can bring to this
Anonymous
How do I find places to contribute to open source c/c++ project?
Anonymous
👍
Elnee
How do I find places to contribute to open source c/c++ project?
https://github.com/MunGell/awesome-for-beginners
Elnee
ur welcome
Anonymous
Hello to everyone! :) How would you define the notion of polymorphism?
D
How do I find places to contribute to open source c/c++ project?
Get geany, add emacs and vim keybindings and try to integrate a lua interpreter maybe .
Anonymous
...encapsulation
olli
Hello to everyone! :) How would you define the notion of polymorphism?
polymorphism - providing a single interface to entities of different types. virtual functions provide dynamic (run-time) polymorphism through an interface provided by a base class. Overloaded functions and templates provide static (compile-time) polymorphism. [http://www.stroustrup.com/glossary.html#Gpolymorphism]
Anonymous
Why some classes must define virtual destructor?
olli
Why some classes must define virtual destructor?
https://wiki.sei.cmu.edu/confluence/display/cplusplus/OOP52-CPP.+Do+not+delete+a+polymorphic+object+without+a+virtual+destructor
Anonymous
Who is located in Moscow? We can carry out meetups...
Martin
Hi, soory for a stupid question. Why is my regex returning false?
BinaryByter
because its ill formed prolly
Martin
c++ std::cmatch m; std::regex_match(R"(25(25))", m, std::regex("25"))
BinaryByter
You match a regex against a regex?
Martin
Edited, pasted the wrong stuff.
Martin
I'm matching a sting "25(25)" to the value "25"
Martin
And a proof that it doesn't work (using a C++ interpolator)