How to escape backslash in // comment Escaping Backslashes in C Comments A Delicate Dance Comments in code are like little notes to ourselves helping us understand what our code is doing In C we use 2 min read 07-10-2024 7
openssl/ssl.h not found but installed with homebrew openssl ssl h No such file or directory A Common Homebrew Problem and How to Fix It Have you encountered the frustrating openssl ssl h No such file or directory 2 min read 07-10-2024 5
Cannot compile simple Metal program with C++ from command line Metal Compilation Woes A Beginners Guide to Troubleshooting Metal Apples powerful graphics API can be a bit of a challenge to get started with especially when y 2 min read 05-10-2024 17
Clang 18.1.5 and the support of std::println The Printf Revolution Clang 18 1 5 and the Rise of std println The world of C has always been a bit of a tangled web when it comes to printing to the console Wh 2 min read 04-10-2024 13
Clang++ compile mlir-toy ch1 failed Clang Compilation Errors A Deep Dive into MLIR Toy Chapter 1 Have you encountered a frustrating error while compiling MLIR Toy Chapter 1 using Clang This articl 2 min read 04-10-2024 11
Alternatives to self assignment for 'breakpoint code' Ditch the Self Assignment Effective Alternatives to Breakpoint Code Debugging can be a frustrating experience Sometimes you just need a quick way to inspect a v 2 min read 13-09-2024 21
Alternatives to self assignment for 'breakpoint code' Beyond Self Assignment Smarter Breakpoint Strategies in C Debugging is an essential part of software development and breakpoints are a crucial tool for understa 2 min read 01-09-2024 23
Get relative include path for file with clang tooling Getting Relative Include Paths for Files with Clang Tooling When working with Clang tooling you might encounter situations where you need to generate relative i 4 min read 01-09-2024 25
c++ std::optional<std::unique_ptr<int>> ist not constexpr? Why std optional std unique ptr int isnt constexpr in C 20 The question of why std optional std unique ptr int isnt constexpr in C 20 often arises when develope 2 min read 31-08-2024 22
std::optional<std::unique_ptr<int>> is not constexpr? Why std optional std unique ptr int is not constexpr You re trying to create a constexpr function that returns an std optional std unique ptr int However you re 2 min read 31-08-2024 20
`static_cast<const bool&>` with `explicit operator bool` The Intricacies of static cast const bool and with explicit operator bool This article delves into a common issue that arises when using static cast const bool 2 min read 28-08-2024 30
Undefined reference with requires expression using clang++ Undefined Reference with Requires Expression Using clang A Breakdown This article delves into a common issue encountered when using requires expressions with te 3 min read 28-08-2024 28
Call file-private function before its definition without manual declaration Calling File Private Functions Before Their Definition In C its generally a good practice to define functions before you use them This ensures the compiler know 2 min read 27-08-2024 13