This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/promise_timeout_memleak
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to 
refs/heads/feature/promise_timeout_memleak by this push:
     new ac3a87c  Fixes wrong exception class name
ac3a87c is described below

commit ac3a87ced0b812c1cfa488e4649c9f4f0d12fabf
Author: Pepijn Noltes <[email protected]>
AuthorDate: Mon Sep 6 21:05:12 2021 +0200

    Fixes wrong exception class name
---
 libs/promises/api/celix/PromiseIllegalStateException.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/promises/api/celix/PromiseIllegalStateException.h 
b/libs/promises/api/celix/PromiseIllegalStateException.h
index 17558e0..ca00540 100644
--- a/libs/promises/api/celix/PromiseIllegalStateException.h
+++ b/libs/promises/api/celix/PromiseIllegalStateException.h
@@ -23,7 +23,7 @@
 
 namespace celix {
 
-    class Ad : public std::exception {
+    class PromiseIllegalStateException : public std::exception {
     public:
         [[nodiscard]] const char* what() const noexcept override {
             return "Illegal state";

Reply via email to