Ignore:
Timestamp:
Jun 12, 2019 6:00:35 AM (5 years ago)
Author:
nanang
Message:

Misc (re #2147): Fixed compile warnings "dynamic exception specifications are deprecated in C++11".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua2/presence.hpp

    r5969 r6026  
    101101     * @param node              Container to read values from. 
    102102     */ 
    103     virtual void readObject(const ContainerNode &node) throw(Error); 
     103    virtual void readObject(const ContainerNode &node) PJSUA2_THROW(Error); 
    104104 
    105105    /** 
     
    108108     * @param node              Container to write values to. 
    109109     */ 
    110     virtual void writeObject(ContainerNode &node) const throw(Error); 
     110    virtual void writeObject(ContainerNode &node) const PJSUA2_THROW(Error); 
    111111}; 
    112112 
     
    233233     * @param cfg               The buddy config. 
    234234     */ 
    235     void create(Account &acc, const BuddyConfig &cfg) throw(Error); 
     235    void create(Account &acc, const BuddyConfig &cfg) PJSUA2_THROW(Error); 
    236236     
    237237    /** 
     
    247247     * @return                  Buddy info. 
    248248     */ 
    249     BuddyInfo getInfo() const throw(Error); 
     249    BuddyInfo getInfo() const PJSUA2_THROW(Error); 
    250250 
    251251    /** 
     
    257257     *                          subscription. 
    258258     */ 
    259     void subscribePresence(bool subscribe) throw(Error); 
     259    void subscribePresence(bool subscribe) PJSUA2_THROW(Error); 
    260260     
    261261    /** 
     
    275275     * \a onBuddyState() callback. 
    276276     */ 
    277      void updatePresence(void) throw(Error); 
     277     void updatePresence(void) PJSUA2_THROW(Error); 
    278278      
    279279    /** 
     
    283283     * @param prm       Sending instant message parameter. 
    284284     */ 
    285     void sendInstantMessage(const SendInstantMessageParam &prm) throw(Error); 
     285    void sendInstantMessage(const SendInstantMessageParam &prm) 
     286                            PJSUA2_THROW(Error); 
    286287 
    287288    /** 
     
    291292     */ 
    292293    void sendTypingIndication(const SendTypingIndicationParam &prm) 
    293          throw(Error); 
     294         PJSUA2_THROW(Error); 
    294295 
    295296public: 
Note: See TracChangeset for help on using the changeset viewer.