🍌
C++ Feed
@cpp_aggregator
301
subscribers
218
photos
12.5K
links
Агрегатор всего подряд про C++.
Для связи:
@smertig
Powered by
https://github.com/Smertig/banana
Download Telegram
Join
🍌
C++ Feed
301 subscribers
🍌
C++ Feed
The case of the make_shared on a C++/WinRT type
Источник:
The Old New Thing
Microsoft News
The case of the make_shared on a C++/WinRT type
Now you can't tell who's in charge.
🍌
C++ Feed
The KDE Free Qt Foundation: 25 Years of Celebration
Источник:
Qt Blog
www.qt.io
The KDE Free Qt Foundation: 25 Years of Celebration
We are celebrating 25 years of the KDE Free Qt Foundation.
🍌
C++ Feed
CppCon 2022 Back to Basics: Templates in C++ -- Nicolai Josuttis
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
Presentation of my Mentoring Programs (Including "C++20: Get the Details")
Источник:
Modernes C++ -
ModernesCpp.com
Modernescpp
Presentation of my Mentoring Programs (Including "C++20: Get the Details") - ModernesCpp.com
🍌
C++ Feed
Arduino AY player с экраном и кнопками
Источник:
Habr
Автор:
voldemar_d
Хабр
Arduino AY player с экраном и кнопками
Конструируем музыкальный плеер PSG-файлов на чипе AY-3-8910 с OLED-экраном, кнопками управления и дополнительной памятью, а также подключаем выходные и входные сдвиговые регистры и прочие устройства с...
🍌
C++ Feed
Synchronization in Vulkan
Источник:
KDAB Blogs – KDAB
KDAB
Synchronization in Vulkan
Learn about what Vulkan needs us to synchronize and how to achieve synchronization between GPU/GPU and CPU/GPU workloads.
🍌
C++ Feed
Qt Creator 11 Beta2 released
Источник:
Qt Blog
🍌
C++ Feed
How can I find out the last time a user logged on from C++?
Источник:
The Old New Thing
Microsoft News
How can I find out the last time a user logged on from C++?
The information is in the historically-named LANMAN APIs.
🍌
C++ Feed
Object Lifetime -- Ilya Doroshenko
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
PSA: Value-initialization is not merely default-construction
Источник:
Arthur O’Dwyer
quuxplusone.github.io
PSA: Value-initialization is not merely default-construction
At the Varna WG21 meeting, Giuseppe D’Angelo presented his
P2782 “Type trait to detect if value initialization can be achieved by zero-filling”.
The intent of this new type trait is to tell vector’s implementor
whether
std::vector<T> v;
v.resize(1000);
…
🍌
C++ Feed
Include Cleanup and Visualize Macro Expansion
Источник:
C++ Team Blog
🍌
C++ Feed
Contracts
Источник:
CppCast
Cppcast
Episode 363
Joshua Berne joins Phil and Timur. Joshua talks to us about the previous week's ISO C++ meeting in Varna, Bulgaria, then focuses on the current state of the contracts proposal that he has been central to, as well as a bit of its history.
🍌
C++ Feed
60 антипаттернов для С++ программиста, часть 9 (совет 41 — 45)
Источник:
Habr
Автор:
Andrey2008
Хабр
60 антипаттернов для С++ программиста, часть 9 (совет 41 — 45)
Перед вами обновлённая коллекция вредных советов для C++ программистов, которая превратилась в целую электронную книгу. Всего их 60, и каждый сопровождается пояснением, почему на самом деле ему не...
🍌
C++ Feed
What can go wrong if you release an SRWLock from a thread different from the one that acquired it?
Источник:
The Old New Thing
Microsoft News
What can go wrong if you release an SRWLock from a thread different from the one that acquired it?
It's not a supported scenario, so anything can happen.
🍌
C++ Feed
[Перевод] Интероперабельность между С++ и Rust
Источник:
Habr
Автор:
Albert_Wesker
Хабр
Интероперабельность между С++ и Rust
Этот пост основан на презентации, с которой автор выступил на конференции EuroRust 2022 в Берлине. Доступны слайды и видеозапись . Автор, работающий в компании Slint, участвует в создании...
💩
1
🍌
C++ Feed
CppCon 2022 Template Meta-Programming in C++ -- Kris Jusiak
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
Polymorphic types aren’t trivially relocatable
Источник:
Arthur O’Dwyer
quuxplusone.github.io
Polymorphic types aren’t trivially relocatable
One of the non-key differences between P1144
trivial relocatability and P2786R1
trivial relocatability (§11.3, page 19) is that P2786R1 accidentally considers polymorphic types
to be trivially relocatable by default. I say “accidentally” because of course…
🍌
C++ Feed
C++ standard library ABI compatibility
Источник:
MaskRay
MaskRay
C++ standard library ABI compatibility
Updated in 2023-11. For a user who only uses one C++ standard library, such as libc++, there are typically three compatibility goals, each with increasing compatibility requirements: Can the program,
🍌
C++ Feed
It’s Great That You Provide Operator Overloads, But It’s Also Nice to Have Names -- Raymond Chen
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
Monitor Object
Источник:
Modernes C++ -
ModernesCpp.com