1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00

Merge branch 'development' into watch-arrays

This commit is contained in:
FellippeHeitor 2021-09-04 23:57:22 -03:00
commit a02243455b
3 changed files with 4 additions and 2 deletions

View file

@ -41,6 +41,7 @@
### Linux
- `xmessage` added to dependency list (setup script).
- Fixes `InKey$` acting too slow.
- Fix compilation error with DATA statements on gcc 11.
<!---
- Patches condition that would leave zombie processes behind when using `Shell _DontWait`.
--->
--->

View file

@ -100,7 +100,6 @@
#endif
#endif
using namespace std;
//QB64 string descriptor structure
struct qbs_field{

View file

@ -68,4 +68,6 @@
extern qbs *qbs_lcase(qbs *str);
extern qbs *qbs_ucase(qbs *str);
using namespace std;
#endif