This patch adds a required property to text fields and their
derivatives. Additionally, the Process Name and PID fields in the attach
form were marked as required.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Nice smaller changes!
lldb/source/Core/IOHandlerCursesGUI.cpp | ||
---|---|---|
1079 | I would remove the default parameter to make sure everyone sets this correctly. It also will help avoid compilation issue if we ever add more parameters in the future as this can sometimes cause implicit conversion bugs. | |
1278–1279 | Remove default argument value for "required" as mentioned above. | |
1290–1293 | Remove default argument value for "required" as mentioned above. | |
1321–1323 | Remove default argument value for "required" as mentioned above. | |
1898 | Remove default argument value for "required" as mentioned above. | |
1906–1907 | Remove default argument value for "need_to_exist" and "required" as mentioned above. Have everyone set them each time. | |
1915–1916 | Remove default argument value for "need_to_exist" and "required" as mentioned above. Have everyone set them each time. | |
1923 | Remove default argument value for "required" as mentioned above. |
I would remove the default parameter to make sure everyone sets this correctly. It also will help avoid compilation issue if we ever add more parameters in the future as this can sometimes cause implicit conversion bugs.