Commit 4970a4f 1 parent 1d78dbc commit 4970a4f Copy full SHA for 4970a4f
File tree 2 files changed +0
-28
lines changed
2 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -1535,30 +1535,6 @@ bool CPLIsDefaultErrorHandlerAndCatchDebug()
1535
1535
gbCatchDebug && pfnErrorHandler == CPLDefaultErrorHandler;
1536
1536
}
1537
1537
1538
- /* ***********************************************************************/
1539
- /* CPLErrorAccumulatorFunc() */
1540
- /* ***********************************************************************/
1541
-
1542
- static void CPL_STDCALL CPLErrorAccumulatorFunc (CPLErr eErr, CPLErrorNum no,
1543
- const char *msg)
1544
- {
1545
- std::vector<CPLErrorHandlerAccumulatorStruct> *paoErrors =
1546
- static_cast <std::vector<CPLErrorHandlerAccumulatorStruct> *>(
1547
- CPLGetErrorHandlerUserData ());
1548
- paoErrors->push_back (CPLErrorHandlerAccumulatorStruct (eErr, no, msg));
1549
- }
1550
-
1551
- void CPLInstallErrorHandlerAccumulator (
1552
- std::vector<CPLErrorHandlerAccumulatorStruct> &aoErrors)
1553
- {
1554
- CPLPushErrorHandlerEx (CPLErrorAccumulatorFunc, &aoErrors);
1555
- }
1556
-
1557
- void CPLUninstallErrorHandlerAccumulator ()
1558
- {
1559
- CPLPopErrorHandler ();
1560
- }
1561
-
1562
1538
/* ***********************************************************************/
1563
1539
/* CPLErrorStateBackuper::CPLErrorStateBackuper() */
1564
1540
/* ***********************************************************************/
Original file line number Diff line number Diff line change @@ -45,10 +45,6 @@ class CPL_DLL CPLErrorHandlerAccumulatorStruct
45
45
}
46
46
};
47
47
48
- void CPL_DLL CPLInstallErrorHandlerAccumulator (
49
- std::vector<CPLErrorHandlerAccumulatorStruct> &aoErrors);
50
- void CPL_DLL CPLUninstallErrorHandlerAccumulator ();
51
-
52
48
/* ***********************************************************************/
53
49
/* CPLErrorAccumulator */
54
50
/* ***********************************************************************/
You can’t perform that action at this time.
0 commit comments