-
Updated
Apr 29, 2020 - Java
C++
C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 23,672 public repositories matching this topic...
-
Updated
Apr 20, 2020
-
Updated
Apr 16, 2020
Describe the bug
In graph options, update "Theme" to "Graph Theme"
-
Updated
Apr 30, 2020 - C++
-
Updated
Apr 19, 2020 - C++
infer version v0.15.0
in my case, 0xFFFF or 0xFFFFFFFF is a common initializer and there are a lot of this semantics in our code. I would like to ignore those harmless. but if I turn off liveness checker, I worry about missing some truely harmful bugs. Does Infer provide some filtering option or method?
There were some problems in the past regarding std::filesystem, MSVC 2017 and 2019 added support so we would be able to update our sources correspondingly.
-
Updated
Apr 30, 2020 - C++
The doc is great! Hoewever some areas are still missing.
C++11 intoduced raw string literals: https://en.cppreference.com/w/cpp/language/string_literal
It is useful in many different areas, like strings with quotes, multiline strings and for example windows paths without escaping backslashes:
const char win_path[] = R"(c:\some\unescaped\path)";The same cppreference link als
Library name: Open CASCADE Technology
Library description: A 3D CAD, CAM, CAE, ecc. C++ LGPL Library
Source repository URL: https://www.opencascade.com/content/latest-release
Project homepage (if different from the source repository):
Anything else that is useful to know when adding (such as optional features the library may have that should be included):
-
Updated
Jan 7, 2020 - C++
Any plan to add the solarized color theme? Or there are any documents to show how to adding color theme?
OS: [Windows 10]
Version: [0.2.6]
Commit/Build: [06bbf5d]
Something that would be nice to have is the ability to assign a color to a role on multiplayer servers, and then display usernames from people of that role in the assigned color in the chat.
The type checker contains multiple occurrences of
if (noErrors)
for (Source const* source: m_sourceOrder)
if (source->ast)
for (ASTPointer<ASTNode> const& node: source->ast->nodes())
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
These should be extracted into some helper "forAllContracts" or something like that, which takes
-
Updated
May 1, 2020 - Java
-
Updated
Apr 25, 2020 - TeX
Vcpkg is a C++ dependency management system that makes installation and consumption as a dependency very easy. We should support this for VW to allow consuming the lib as easy as possible.
Instructions for creating a new package can be found here: https://github.com/microsoft/vcpkg/blob/master/docs/examples/packaging-github-repos.md
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
I'd like to be able to set sound source volumes via AppleScript or similar — I can't seem to find any information regarding this, and the dictionary seems to only apply to setting output.
I'm using BetterTouchTool to send volume levels from a midi device with faders, and I'd like to associate the faders with different sources in BackgroundMusic.
-
Updated
Apr 23, 2020 - C++
Is there a way to let the citra gdbstub automatically break on unmapped memory access? Right now, citra handles unmapped access gracefully and only spits out an error in the log. The real 3DS hardware will crash on unmapped memory access but the current Rosalina gdbstub will at least break with SIGSEGV and let you examine the process remains.
Would be nice if it was possible with citra as well ..
-
Updated
Apr 29, 2020 - C++
In __init__.pxd in a package, using from . cimport modulename attempts to find modulename.pxd in the parent directory of the package.
Using from . import modulename in basic Python attempts to find modulename.* within the package itself, as does using from . cimport modulename in all *.pxd files except for __init__.pxd in packages.
Using `from .packagename cimport modulenam
-
Updated
May 1, 2020 - C++
集合 S 包含从1到 n 的整数。不幸的是,因为数据错误,导致集合里面某一个元素复制了成了集合里面的另外一个元素的值,导致集合丢失了一个整数并且有一个元素重复。
给定一个数组 nums 代表了集合 S 发生错误后的结果。你的任务是首先寻找到重复出现的整数,再找到丢失的整数,将它们以数组的形式返回。
示例 1:
输入: nums = [1,2,2,4]
输出: [2,3]
注意:
给定数组的长度范围是 [2, 10000]。
给定的数组是无序的。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/set-mismatch