diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-04-02 17:37:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 17:37:09 +0200 |
commit | b50387c8bf2737e7f100c6c32350d97301a6f2a3 (patch) | |
tree | 34402b0e324fc512a6cd8bd5bc85a3cc042fec30 /modules/gdscript/language_server/lsp.hpp | |
parent | 6a38ce1b318cc71c285c11f5b52f04a681c309fd (diff) | |
parent | ea7b497065a615b6fd4e165b331f50613a63a329 (diff) |
Merge pull request #37521 from akien-mga/more-nullptr
Replace more occurrences of NULL with nullptr
Diffstat (limited to 'modules/gdscript/language_server/lsp.hpp')
-rw-r--r-- | modules/gdscript/language_server/lsp.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdscript/language_server/lsp.hpp b/modules/gdscript/language_server/lsp.hpp index 914c9742e1..124fcbfed8 100644 --- a/modules/gdscript/language_server/lsp.hpp +++ b/modules/gdscript/language_server/lsp.hpp @@ -156,7 +156,7 @@ struct LocationLink { * Used as the underlined span for mouse interaction. Defaults to the word range at * the mouse position. */ - Range *originSelectionRange = NULL; + Range *originSelectionRange = nullptr; /** * The target resource identifier of this link. @@ -1686,8 +1686,8 @@ struct InitializeResult { struct GodotNativeClassInfo { String name; - const DocData::ClassDoc *class_doc = NULL; - const ClassDB::ClassInfo *class_info = NULL; + const DocData::ClassDoc *class_doc = nullptr; + const ClassDB::ClassInfo *class_info = nullptr; Dictionary to_json() { Dictionary dict; |