Skip to content
#

c-plus-plus

cpp logo

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.

Here are 12,271 public repositories matching this topic...

electron
benthecarman
benthecarman commented Feb 18, 2021

After #15946 starting a pruned bitcoin-qt with blockfilterindex=1 will give the error message

Error: A fatal internal error occurred, see debug.log for details

It would be more helpful if it gave what's in the debug.log which is

basic block filter index best block of the index goes beyond pruned data. Please disable the index or reindex (which will download the whole blockchain agai

obs-studio
simdjson
jhalliday
jhalliday commented Feb 11, 2021

docs/tape.md contains example tape dump output for parse of jsonexamples/small/demo.json which begins as

0 r // pointing to 38 (right after last node)
1 { // pointing to next tape location 38 (first node after the scope)

However, when executing ./tools/json2json -d jsonexamples/small/demo.json the observed output is

0 : r // pointing to 39 (right after last node)
1 : { // pointing to ne

zfields
zfields commented Feb 12, 2021

Description

I have a hardware abstraction layer interface, as well as a driver interface. I have multiple drivers utilizing the HAL interface, while implementing the driver interface. This plugin approach causes me to have identically named tests across multiple test files.

For example:

TEST_CASE("init() returns `E_HAL_INIT`, when HardwareAbstractionLayer::init() returns an er
xmha97
xmha97 commented Sep 5, 2019

Bug report

Describe the bug

Here is a clear and concise description of what the problem is:

Hello, There is a bug on Kodi (tested on Windows Store version)
Using Alt+Space I can move Kodi on full-screen mode

Expected Behavior

Here is a clear and concise description of what was expected to happen:

Actual Behavior

Possible Fix

To Reproduce

Steps to reproduce t

duncanspumpkin
duncanspumpkin commented Feb 14, 2021

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

qmk_firmware
fauxpark
fauxpark commented Oct 29, 2020
☒ keyboards/bpiphany/frosty_flake/frosty_flake.h: LAYOUT_tkl_ansi: Nested layout macro detected. Matrix data not available!

☒ keyboards/bpiphany/pegasushoof/2013/2013.h: LAYOUT_tkl_ansi: Nested layout macro detected. Matrix data not available!
☒ keyboards/bpiphany/pegasushoof/2015/2015.h: LAYOUT_tkl_ansi: Nested layout macro detected. Matrix data not available!
☒ keyboards/bpiphany/pegas
devjgm
devjgm commented Jan 20, 2020

Is your feature request related to a problem? Please describe.
No.

Describe the solution you'd like
I'd like the source code to be automatically clang-formatted according to my settings anytime the code is compiled. That is, don't require me to use the contextual menu or keyboard shortcut to format the code. Just auto-format it; just like the code is auto-compiled too.

Well, ther

Created by Bjarne Stroustrup

Released October 1985

Website
isocpp.org
Wikipedia
Wikipedia