Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
73c98d87
Commit
73c98d87
authored
Jun 11, 2014
by
Damien George
Browse files
py: Fix static defn in qstr; include mpconfigport.h with "" (not <>).
parent
0c0f4468
Changes
2
Hide whitespace changes
Inline
Side-by-side
py/mpconfig.h
View file @
73c98d87
...
...
@@ -28,7 +28,7 @@
// You can override any of these options using mpconfigport.h file located
// in a directory of your port.
#include
<
mpconfigport.h
>
#include
"
mpconfigport.h
"
// Any options not explicitly set in mpconfigport.h will get default
// values below.
...
...
py/qstr.c
View file @
73c98d87
...
...
@@ -77,7 +77,7 @@ typedef struct _qstr_pool_t {
const
byte
*
qstrs
[];
}
qstr_pool_t
;
const
static
qstr_pool_t
const_pool
=
{
STATIC
const
qstr_pool_t
const_pool
=
{
NULL
,
// no previous pool
0
,
// no previous pool
10
,
// set so that the first dynamically allocated pool is twice this size; must be <= the len (just below)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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