Zhoujiazhiwork
- 活动总数 35
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 13
-
创建于 Conditional breakpoint with expression always triggers regardless of result
已完成I found that conditional breakpoints don’t seem to work correctly.For example, I set a condition like: "text.Contains("Hello")"However, the breakpoint is always triggered, no matter whether the exp... -
创建于 “Go to Definition/Declaration” mispairs constructors with multiple overloads in custom class
I encountered an issue with “Go to Definition/Declaration” when working with a custom class that has multiple constructor overloads. header:explicit String(const std::string& str);String(std::initi... -
创建于 Question about CLion Nova and code privacy
已回答I am considering enabling Nova in CLion, but I would like to confirm how it handles code analysis. Does Nova ever upload my local code to the cloud for processing or analysis (for example, when usi... -
创建于 How to properly index mono/mono source code in CLion?
已回答I’m trying to open the Mono source code (https://github.com/mono/mono) in CLion. However, when I open the project, CLion does not index the code—there’s no syntax highlighting or code auto-completi... -
创建于 Constructor usage not detected when called via emplace_back(...)
已回答When using Find Usages on a class constructor in Rider , calls to the constructor via std::vector::emplace_back(...) are not shown. struct MyType { MyType(int a, float b, std::string c); }; std:... -
创建于 Renaming .h file does not update corresponding .cpp file name
已回答When renaming a header file (e.g., Foo.h) in CLion, the corresponding implementation file (Foo.cpp) is not renamed automatically. -
创建于 "Go to Derived" icon not working from .cpp file in CLion
已回答Clicking the "Go to Derived" icon next to a base class method in a .cpp file does nothing — there's no navigation or feedback.The same icon works correctly in the corresponding .h file, navigating ... -
创建于 Refactor Rename changes method names inside string literals
已回答When renaming a method, CLion also replaces the method name inside string literals, which is unwanted.Is there a setting or config to disable renaming inside string literals? -
创建于 How to exclude string literals from "Find in Files" (Ctrl+Shift+F) results in CLion?
已回答I'm often using the "Find in Files" feature (Ctrl+Shift+F) to search across my project.However, I want to exclude matches found inside string literals.For example, given this line:const char* text ... -
创建于 Formatting Issues: Spaces in < > and Line Breaks
Hi,I just started using CLion for C++. Here’s an example of my code:namespace Test { static vector<vector<vector<int>>> *abc; } After reformatting, it turns into:namespace Test { static vecto...