diff options
Diffstat (limited to 'modules/gdscript/language_server')
| -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;  |