summaryrefslogtreecommitdiffstats
path: root/generic/tclOOCall.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.7jan.nijtmans2022-08-211-1/+5
|\
| * Merge 8.7jan.nijtmans2022-06-251-1/+1
| |\
| * | (experimental) TclOO > 2**31 argsjan.nijtmans2022-06-151-1/+5
| |/
* | Merge 9.0jan.nijtmans2022-03-151-6/+6
|\ \
| * \ Merge 8.7jan.nijtmans2022-03-141-2/+2
| |\ \ | | |/
| | * Eliminate useless "const int" usage, where "const" has no meaning. VC-2015 ↵jan.nijtmans2022-03-141-2/+2
| | | | | | | | | | | | has problem when the signatures don't match
| * | Fix compiler warnings (caused by previous commit)jan.nijtmans2022-02-241-4/+6
| | |
* | | Merge 9.0jan.nijtmans2022-02-241-23/+23
|\ \ \ | |/ /
| * | More (internal) size_t usage in TclOOjan.nijtmans2022-02-241-6/+7
| | |
* | | More int -> size_t, especially TclOOjan.nijtmans2022-01-271-19/+24
|/ /
* | Merge 8.7jan.nijtmans2021-10-081-7/+7
|\ \ | |/
| * Change "IntRep" to "InternalRep", as discussed in the Tcl Core mailing listjan.nijtmans2021-10-061-7/+7
| |
* | Merge 8.7jan.nijtmans2020-12-081-1/+1
|\ \ | |/
| * Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵jan.nijtmans2020-12-081-1/+1
| | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
* | Merge 8.7jan.nijtmans2020-08-111-1/+1
|\ \ | |/
* | Merge 8.7jan.nijtmans2020-03-071-6/+3
|\ \ | |/
| * Unused arguments in the OO source code files.dgp2020-03-071-6/+3
| |
* | Merge 8.7jan.nijtmans2020-02-281-30/+33
|\ \ | |/
| * Merge 8.7jan.nijtmans2020-01-071-0/+2
| |\
| * \ Let's try a real C++ build with Travis on Linuxjan.nijtmans2019-08-301-3/+6
| |\ \
| * \ \ Merge tip-548jan.nijtmans2019-08-151-2/+2
| |\ \ \ | | |/ /
| * | | Merge 8.7, and continue implementation. Almost donejan.nijtmans2019-07-101-25/+25
| |\ \ \
| * | | | Experiment: compile Tcl with C++ compiler. WIPjan.nijtmans2019-07-041-2/+2
| |/ / /
* | | | Merge 8.7jan.nijtmans2019-12-241-0/+2
|\ \ \ \ | | |_|/ | |/| |
| * | | Add FALLTHRU markers, eliminating gcc warning using -Wextrajan.nijtmans2019-12-241-0/+2
| | |/ | |/|
* | | Merge 8.7jan.nijtmans2019-08-151-5/+5
|\ \ \ | |/ /
| * | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ↵jan.nijtmans2019-07-171-5/+5
| |/ | | | | | | in C++ (removed in C++17, even), and essentially does nothing with most modern compilers.
* | merge 8.7dgp2019-05-031-7/+10
|\ \ | |/
| * merge 8.6dgp2019-05-031-7/+10
| |\
| | * Minor code style cleanup.dkf2019-04-231-11/+22
| | |
| * | More use of (efficient) TclHasIntRep() macro. Also eliminate many (size_t) ↵jan.nijtmans2019-02-271-1/+1
| | | | | | | | | | | | and (unsigned) type-casts, which don't make sense any more.
* | | Eliminate many (mostly harmless) MSVC warning messages. Tcl 9 compiles ↵jan.nijtmans2019-03-131-1/+1
| | | | | | | | | | | | warning-free now on MSVC.
* | | Merge 8.7jan.nijtmans2019-01-281-3/+3
|\ \ \ | |/ /
| * | New internal macro TclFetchIntRep, which is faster than Tcl_FetchIntRep. jan.nijtmans2019-01-281-3/+3
| | | | | | | | | But ... don't use this function when the result is only compared to NULL: that's just overkill.
| * | Merge 8.6. Also reduce tclCharTypeTable[] to 256 entries, as this table is ↵jan.nijtmans2019-01-261-1/+1
| |\ \ | | |/ | | | | | | | | | always addressed with unsigned chars now. Eliminate some useless end-of-line spacing that slipped in.
* | | Many internal int -> size_t increases, so string lengths > 2Gb can be ↵jan.nijtmans2018-12-261-1/+1
| | | | | | | | | | | | handled correctly in many more places.
* | | Merge 8.7jan.nijtmans2018-12-111-2/+2
|\ \ \ | |/ / | | | | | | In test-cases, don't load Tcltest package if it isn't actually used. Another round of size_t related improvements. Nothing functional. Also improve some comments.
* | | Merge 8.7jan.nijtmans2018-11-211-3/+3
|\ \ \ | |/ /
| * | Fix windows build with Visual Studiojan.nijtmans2018-11-211-3/+3
| | |
* | | Merge 8.7jan.nijtmans2018-11-151-3/+3
|\ \ \ | |/ / | | | | | | Fix Tcl_InitStringRep() signature in line with TIP #494, so it can handle lengths >2Gb on 64-bit platforms Various other code cleanups, unnecessary type-casts e.o.
| * | Implement TIP 524dkf2018-11-061-0/+263
| |\ \
| | * | Definition and introspection commands.dkf2018-10-281-4/+4
| | | |
| | * | Core machinery for implementing TIP 524; still needs user-facing access commandsdkf2018-10-271-0/+263
| | | |
* | | | Implement TIP 445dgp2018-11-131-15/+14
|\ \ \ \ | |/ / /
| * | | merge 8.7dgp2018-10-241-1/+0
| |\ \ \ | | |/ /
| * | | merge 8.7dgp2018-06-041-203/+461
| |\ \ \
| * \ \ \ merge 8.7dgp2018-01-111-1/+12
| |\ \ \ \
| * \ \ \ \ merge trunkdgp2017-10-301-4/+4
| |\ \ \ \ \
| * \ \ \ \ \ merge trunkdgp2017-10-201-19/+56
| |\ \ \ \ \ \
| * \ \ \ \ \ \ merge trunkdgp2017-03-311-0/+1
| |\ \ \ \ \ \ \