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 47,186 public repositories matching this topic...

laomms
laomms commented Jun 18, 2022

Feature type

Plug-ins

Describe the feature

Is it possible to fix the data wrapper plugin for asm-style, The current version like this

array DB 4Dh, 5Ah, 90h, 00h, 03h, 00h, 00h, 00h, 04h, 00h, 00h, 00h, 0FFh, 0FFh, 00h, 00h,
              0B8h, 00h, 00h, 00h, 00h, 00h, 00h, 00h, 40h, 00h, 00h, 00h, 00h, 00h, 00h, 00h,
              00h, 00h, 00h, 00h, 00h, 00h, 00h, 00h
gui good first issue bug

📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, interview experience, recruitment, recommendation, etc.

  • Updated Mar 18, 2022
  • C++
ZumZoom
ZumZoom commented Jun 24, 2022

When doing division and modulo operation with constant or immutable denominator it is possible to only do compile-time denominator check and skip runtime checks.

Consider following contracts:

pragma solidity 0.8.15;

uint256 constant _MODULE = 17;

contract C1 {
    function f(uint256 a) external pure returns(uint256) {
        return a % _MODULE;
    }
}

contract C2 
openage
heinezen
heinezen commented Jan 22, 2021

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

improvement python assets good first issue
loic-joly-sonarsource
loic-joly-sonarsource commented Mar 15, 2022

Is your feature request related to a problem? Please describe

Very often, with working with conformance view, I work with different versions of the same compiler, all options are the same. Or I work with different C++ standards, with the same compiler and the same options (exception for this one). Or...

Right now, to add a new compiler in the conformance view, I have to start from an empty

ui good first issue request
Broxzier
Broxzier commented Jun 18, 2022

Operating System

Windows 10, 64 bit

OpenRCT2 build

OpenRCT2, v0.4.0-174-gc8df66f (c8df66f on develop) provided by GitHub

Describe the issue

The implementation of String::Format_VA (mostly called from the String::Format overload without the buffer argument) allocates space for the string, and it's up to the user to free this (Memory::Free). This is however rarely do

bug refactor good first issue

Created by Bjarne Stroustrup

Released October 1985

Website
isocpp.org
Wikipedia
Wikipedia