Douglas Chen

Results 11 comments of Douglas Chen

我也需要這個功能。我在使用 Google Chrome Remote Desktop [https://remotedesktop.google.com],有時後在遠端機器上看網頁,卻常誤動作把連線中的網頁關了。如果有這個功能就太好了,很期侍。

Hi @zimocode , I tried it, and it works now. Thank you ^.^

我也在Win8中會遇到輸入法失效的問題,重開機後才有救。

@keineahnung2345 glad to receive your feedback. I am planning to archive this project because the major feature of this project had been merged into clang-tidy (https://github.com/llvm/llvm-project/commit/2b9b5bc0).

Hi @ruedbi : Glad to receive your reports. There are lots of information, something doesn't be checked, and an error(Q3). Seems something I forget to implement (struct, class, parameter, union)....

Hi @ruedbi: Sorry, reply you late, a little busy recently. **1. About the 1st issue about constructor is not check.** Ctor is a function, but the name must be identical...

Hi @ruedbi **About the `ad 3)`** This tool is based on AST(LLVM's libtooling), so compile successfully is important.

> not sure if I get you right > I guess that by "compile successfully" you mean compile with clang via cppnamelint, right? Not the compile from the modern c++...

Hi @ruedbi Reply your questions. 1. **finding with --verbose:** Please reference to the block. (https://github.com/dougpuob/cppnamelint/blob/master/source/Common.cpp#L87) 2. **Is it expected to check .h files explicitly, or should they only be checked...

Hi @hello2dj 謝謝你的文章,沒想到有 `jit.js` 這種東西的出現。其中,有一個地方想請教,`jit.compile()` 產生出的應該已經是 machine code,接著直接使用 `fn()` 執行 machine code?這部份 JavaScript 是如何直接執行 machine code 的呢? ```javascript // Execute console.log(fn()); ```