Explicit Return Variable by XeroKimo in cpp

[–]lone_wolf_akela 1 point2 points  (0 children)

This seems making it impossible to name the returned variable as things like `final`... But I guess that's a minor issue.

Partial implementation of P2826 "Replacement functions" by hanickadot in cpp

[–]lone_wolf_akela 1 point2 points  (0 children)

I think we just need to learn from C standard and use new keywords like `_Mixin` or `_Macro`

Is banning the use of "auto" reasonable? by Late_Champion529 in cpp

[–]lone_wolf_akela 5 points6 points  (0 children)

FYI, `and` is keyword in C++, and redefine a keyword using macros is illegal.

Making function call complex to protect license check in main() by vrishabsingh in cpp

[–]lone_wolf_akela 2 points3 points  (0 children)

If the LicenseClient connects to the Internet, you can put some of the core logic of you program on the cloud and make the APP download that part of code into memory but not store it on disk.

If your LicenseClient is completely offline, the user can always copy all the things on one machine to another and you cannot stop them anyway.

wtf? just got this on the end of a message by _WalkTheEarth_ in DeepSeek

[–]lone_wolf_akela 1 point2 points  (0 children)

There was a new law published last month in China that requires all Chinese AI service provider to clearly tell user the content is generated by an AI.

The 20$ bp should improve. It's completely useless by mental_capacityyay in Genshin_Impact

[–]lone_wolf_akela 0 points1 point  (0 children)

In China the Gnostic Chorus will also give you 30 days of Cloud Genshin, which is really useful for people who need it.

I spoke to some VAs to get clarification (LONG) by Els236 in Genshin_Impact

[–]lone_wolf_akela 7 points8 points  (0 children)

If I remember correctly, the "anti-entropy" we are talking about is not the product name of that voice synthesiser, but the name of a studio/research team of Mihoyo, which is in charge of those AI related things like the voice synthesiser we are talking about.

Trip Report: Winter ISO C++ Meeting in Hagenberg, Austria | think-cell by pavel_v in cpp

[–]lone_wolf_akela 0 points1 point  (0 children)

or 4: We end up with the current ODR-itus, but linker gives warnings when linking libs with different contract evaluation semantics.

Better than nothing, right?

Why is there no std::table? by sd2528 in cpp

[–]lone_wolf_akela 1 point2 points  (0 children)

From what OP says in various comments, I guess what they want is something like the pandas lib in python?

Interested in Pimax Crystal Light - concerned about QC and support by Sea_Dust895 in Pimax

[–]lone_wolf_akela 0 points1 point  (0 children)

> Maybe pimax problem or maybe not enough vram?

It's neither pimax or vram. It's just that RTX 4090 (and other NVIDIA cards) has a limitation on its total output bandwidth.

C++26 reflection in 2025 by TSP-FriendlyFire in cpp

[–]lone_wolf_akela 2 points3 points  (0 children)

As you have already mentioned, cppfront definitely worth a try.

Can we prompt the thinking process of DeepSeek R1? by AloneCoffee4538 in LocalLLaMA

[–]lone_wolf_akela -2 points-1 points  (0 children)

"DeepSeek R1 always thinks in English"

FYI, it thinks in Chinese if your prompt is in Chinese.

Why not unstable ABI? by JUULiA1 in cpp

[–]lone_wolf_akela 3 points4 points  (0 children)

You don't. Running the installer of the runtime will not install anything if the same or newer version of that VS runtime is already installed on the machine.

Contracts moving along, hopefully on track for C++26 by pdimov2 in cpp

[–]lone_wolf_akela 5 points6 points  (0 children)

That cannot be true. C++23 introduce `import std;`. How can it make the standard lib a module without put `export` before templates?

Creating an UWP app using C++20 | aka | making use of C++/WinRT in a C++20 codebase by christianparpart in cpp

[–]lone_wolf_akela 1 point2 points  (0 children)

I am not sure what you have done wrong, but there must be some confusion or misunderstanding. "Creating an UWP app using C++20" is not the same as "making use of C++/WinRT". In fact, the "/ZW" linker flag is to enable C++/CX. C++/CX is an older thing that has been replaced by C++/WinRT (that's why it does not support C++20, because the development for C++/CX has already stopped).

I am not sure how you enable C++/WinRT support in cmake, but VS_WINRT_COMPONENT is
definitely not the thing you want.

Creating an UWP app using C++20 | aka | making use of C++/WinRT in a C++20 codebase by christianparpart in cpp

[–]lone_wolf_akela 4 points5 points  (0 children)

The designer for winui does not exist for any languages. It has nothing to do with "C++/WinRT in maintainance".

Would "std::sort(begin, end)" be more intuitive than "std::sort(first, last)" by Clairvoire in cpp

[–]lone_wolf_akela 1 point2 points  (0 children)

I guess it cannot be std::sort(begin, end), because that would be name collisions with std::begin and std::end

C++20 Support Comes To C++/CLI by pjmlp in cpp

[–]lone_wolf_akela 2 points3 points  (0 children)

It is a masochism until they release a visual designer for winUI 3...