Jiang Yi
Jiang Yi
## Changes or fixes: Implement startup script support according to this post: https://root-forum.cern.ch/t/cling-startup-scripts-support/51358 ## Checklist: - [X] tested changes locally - [ ] updated the docs (if necessary)
### Is your feature request related to a problem? Please describe. In cling cmd prompt, `.x`, `.X` meta commands loads a `.C` script then invoke a function with the same...
## Changes or fixes: 1. Environment variable `CLING_HISTFILE` to specify history file path. 2. Environment variable `CLING_HISTSIZE` to specify history size. The original behavior is to not set the history...
## Changes or fixes: On Ubuntu 22.04 , execute standalone cling binary. In cmd prompt execute .x meta command without giving a filename, cling crashes. The proposed solution is to...
## Changes or fixes: A minor memleak in cling::UserInterface::runInteractively() reported by valgrind. ## Checklist: - [X] tested changes locally - [ ] updated the docs (if necessary)
## Changes or fixes: Let `a_t` be a c++ class, and we have done `using std::ostream;`. In standalone cling cmd prompt, all of the below function definitions fail to be...
Provide similar api to std::function. Current use case is mainly to hold a r-value lambda object, which etl::delegate is unsuitable since etl::delegate does not extend the lifetime of r-value lambda...