The Wayback Machine - https://web.archive.org/web/20200601171042/https://github.com/topics/clang
Skip to content
#

clang

Here are 664 public repositories matching this topic...

ThePhD
ThePhD commented Aug 22, 2016

Hello, users of sol2! This issue was made so that I could get a better idea of what you all use for Lua and how much you like / dislike sol2 compared to what you used to use (if anything) and sol2 now. If anyone could just reply to this issue with their thoughts, perhaps answer some of the questions below (or go on a tangent, really anything), I'd appreciate it. I'm going to be writing a paper abo

dtarditi
dtarditi commented Apr 18, 2019

PR #342 revamps the checking of bounds declarations. It contains some examples of checking. @lenary noted that none of the examples have unsequenced assignments, where the order in which assignments happen is not specified. This means that pending sets are always empty in the examples. We should add an example where there are some unsequenced assignments.

viboes
viboes commented Sep 28, 2019

As for Display the special operations generated by the compiler #224 discussion, the documentation will improve if we had a section describing the transformation of each featre and his limitations.

In particular for the special operation, to explain that only the operations that are really generated would appear in the transformation. This is due to the fact that the tool s based on the AST.

IgorStauder
IgorStauder commented Nov 21, 2019

bug in README.md when_all_ready() example:

task<> example2()
{
...
// Unpack and handle each result individually once they're all complete.
for (int i = 0; i < 1000; ++i)
{
try
{
>>> std::string& record = tasks[i].result();
should be
std::string& record = resultTasks[i].result();
...
}

gyorb
gyorb commented Jan 21, 2020
  • incremental CTU (on the fly CTU with skip files) feature usage configuration, limitations when ready
  • web UI usage
    • how to compare the previous (marked by tag, use the date filter) results of two runs (same run?)
  • more simple and advanced use case examples
    • CI job for a quality review (check for high severity results and fail the job if any)
    • usage of the upcoming f
philtomson
philtomson commented Jun 28, 2018

was just watching the C++ Now presentation on Julia and C++ (https://www.youtube.com/watch?v=hvnxY3NjHQ4) and noticed in the section on Cxx.jl (around 48 minutes in) that there is a special assignment syntax in the REPL ":=" for assigning C++ results back to a Julia variable.

I don't see this documented anywhere here in the docs.

Improve this page

Add a description, image, and links to the clang topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the clang topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.