Skip to content
#

C++

cpp logo

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

Here are 45,520 public repositories matching this topic...

RubenRBS
RubenRBS commented Apr 14, 2022

compiler-explorer/compiler-explorer#3515 allowed the site to load even if the long url is not deserializable, but currently the site just silently fails and displays the default config.

It would be great if a notification could be shown to the user with a helpful message when this happens.
The steps needed to implement this feature are:

  1. In the catch added by the lin
good first issue request
duncanspumpkin
duncanspumpkin commented Mar 24, 2022

window_editor_object_selection_select_object currently returns its success through a bool and also the global gGameCommandErrorText. It should be refactored to return a GameAction::Result to remove the use of the global.

refactor good first issue
lengthwave
lengthwave commented Apr 29, 2022

Describe the bug
The check for update button in Preferences > Language is a bit confusing.

The placement of the button suggests that the action is connected to submitting the language selection.

To Reproduce
Steps to reproduce the behavior:

  1. Go to Preferences > General > Languages
  2. Select language from dropdown
    3.Click 'Check for updates'
  3. See issue

**Expected behavior

good first issue P2 community
Bluenix2
Bluenix2 commented Aug 7, 2021

Is your feature request related to a problem? Please describe.
Many static type checkers have issues finding Cython's stubs.
Here is from running mypy on my current project:

error: Skipping analyzing "cython": found module but no type hints or library stubs

The same issue can be seen when using import Cython as cython:

error: Skipping analyzing "Cython": found module but 

🔥🔥超过1000本的计算机经典书籍、个人笔记资料以及本人在各平台发表文章中所涉及的资源等。书籍资源包括C/C++、Java、Python、Go语言、数据结构与算法、操作系统、后端架构、计算机系统知识、数据库、计算机网络、设计模式、前端、汇编以及校招社招各种面经~

  • Updated Apr 28, 2022
yugabyte-db
pkj415
pkj415 commented Apr 18, 2022

Description

Create a cluster with TEST_docdb_log_write_batches=true and observe the following -

./bin/yb-ctl create --rf=1 --data_dir ~/yugabyte-data --tserver_flags 'TEST_docdb_log_write_batches=true'
./bin/ysqlsh
yugabyte=# create table test (k int primary key, v int);
CREATE TABLE
yugabyte=# insert into test values (1, 1);
ERROR:  Network error: recvmsg error: Connection refus
good first issue area/docdb
a-kryuk
a-kryuk commented Oct 6, 2021

When I try to 'conan install' version-range-based requirements for a package from a GitLab remote package repository, I get an unhelpful Python message "ERROR: 'NoneType' object is not iterable." I believe it's triggered by some faulty implementation on the GitLab repository side, but it would be helpful if Conan provided a more specific indication of the error cause.
My example conanfile.py:
`

xenia
Triang3l
Triang3l commented Jun 26, 2021

In Xenia, there are two kinds of declarations of kernel notification IDs:

  • System notifications IDs are used simply as hard-written values, without any enum/consts/#defines, with merely comments indicating their original XN_SYS name.
  • XAM apps (such as XmpApp) have notification IDs declared in their classes, as private static const uint32_t kMsg….

For future convenience especially when

Created by Bjarne Stroustrup

Released October 1985

Website
isocpp.org
Wikipedia
Wikipedia