Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
037605b5
Commit
037605b5
authored
Aug 05, 2014
by
Zachary Ware
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #22136: Fix MSVC compiler warnings introduced by #22085
parent
ec3af4e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Modules/_tkinter.c
Modules/_tkinter.c
+7
-7
No files found.
Modules/_tkinter.c
View file @
037605b5
...
...
@@ -228,13 +228,13 @@ typedef struct {
int
dispatching
;
/* We cannot include tclInt.h, as this is internal.
So we cache interesting types here. */
Tcl_ObjType
*
BooleanType
;
Tcl_ObjType
*
ByteArrayType
;
Tcl_ObjType
*
DoubleType
;
Tcl_ObjType
*
IntType
;
Tcl_ObjType
*
ListType
;
Tcl_ObjType
*
ProcBodyType
;
Tcl_ObjType
*
StringType
;
const
Tcl_ObjType
*
BooleanType
;
const
Tcl_ObjType
*
ByteArrayType
;
const
Tcl_ObjType
*
DoubleType
;
const
Tcl_ObjType
*
IntType
;
const
Tcl_ObjType
*
ListType
;
const
Tcl_ObjType
*
ProcBodyType
;
const
Tcl_ObjType
*
StringType
;
}
TkappObject
;
#define Tkapp_Interp(v) (((TkappObject *) (v))->interp)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment