| 1 | #pragma once | 
|---|---|
| 2 | |
| 3 | /** If the stack is large enough and is near its size, throw an exception. | 
| 4 | * You can call this function in "heavy" functions that may be called recursively | 
| 5 | * to prevent possible stack overflows. | 
| 6 | */ | 
| 7 | void checkStackSize(); | 
| 8 | 
| 1 | #pragma once | 
|---|---|
| 2 | |
| 3 | /** If the stack is large enough and is near its size, throw an exception. | 
| 4 | * You can call this function in "heavy" functions that may be called recursively | 
| 5 | * to prevent possible stack overflows. | 
| 6 | */ | 
| 7 | void checkStackSize(); | 
| 8 |