-
Updated
Aug 16, 2021 - Java
C++

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 37,414 public repositories matching this topic...
-
Updated
Aug 20, 2021
-
Updated
Aug 16, 2021 - JavaScript
-
Updated
Aug 21, 2021 - C++
-
Updated
Aug 15, 2021
-
Updated
Aug 15, 2021 - C++
-
Updated
Apr 13, 2021 - C++
-
Updated
Aug 21, 2021
-
Updated
Aug 14, 2021 - C++
-
Updated
Aug 21, 2021 - CMake
-
Updated
Aug 21, 2021 - OCaml
In my mind one of the key things (besides visualization) Sourcetrail provides is a useful graph structure for source code that can be used for various types of analysis, without having to go through the pain of writing a clang analyzer yourself. However, since sourcetrail doesn't have plugins (#1076), writing your own analysis tools is a bit of work, and may not let you use other kinds of graph an
This is a part of #10269 but getting includes consistent also came up recently in #11812 as it might prevent bugs like #11811 and #11103. I'm creating a more focused issue to try out specifically include-what-you-use even if it does not solve the original problem as a whole.
The task here is to install [include-what-you-use](https://include-what-you-us
-
Updated
Aug 20, 2021 - C++
-
Updated
Jan 27, 2021 - C++
-
Updated
Aug 20, 2021 - Java
Required skills: Cython
Difficulty: Medium
Animation frames from AoE2 graphics files are packed into a texture atlas by the openage converter. We use bin packing to find the optimal arrangement (= smallest atlas dimensions) of the frames in the atlas. Bin packing becomes computationally intensive if a lot of frames are packed (look
We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:
constexpr money32 operator"" _GBP(long double money)
{
return money * 10;
}
static_assert(MONEY(2, 40) == 2.40_GBP);
Go through the codebase and replace all MONEY macro uses with the equivalent version. You m
e.g. https://godbolt.org/g/Ce6Mhe from Christian Mazakas on slack
-
Updated
Apr 12, 2021 - TeX
-
Updated
Aug 8, 2021 - Shell
-
Updated
Aug 21, 2021 - C++
Added a cpp file for Floyd Algorithm for cycle detection Description of Change
Checklist