Changeset c735afb in mainline for uspace/lib/cpp/include/csetjmp


Ignore:
Timestamp:
2018-07-05T21:41:24Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
199b6d8
Parents:
b57a3ee
git-author:
Dzejrou <dzejrou@…> (2018-06-25 18:54:33)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
Message:

cpp: fix problems caused by new HelenOS changes (and leftowers from rebase)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/csetjmp

    rb57a3ee rc735afb  
    3232#include <__bits/common.hpp>
    3333
     34/**
     35 * TODO: Currently the <setjmp.h> header uses
     36 *       _Noreturn, which is not available in C++.
     37 */
     38
    3439namespace std::hel
    3540{
    3641    extern "C" {
    37         #include <setjmp.h>
     42        //#include <setjmp.h>
    3843    }
    3944}
     
    4146namespace std
    4247{
    43     using std::hel::jmp_buf;
    44     using std::hel::longjmp;
     48    /* using std::hel::jmp_buf; */
     49    /* using std::hel::longjmp; */
    4550}
    4651
    47 using std::hel::jmp_buf;
    48 using std::hel::longjmp;
     52/* using std::hel::jmp_buf; */
     53/* using std::hel::longjmp; */
    4954
    5055#endif
Note: See TracChangeset for help on using the changeset viewer.