Skip to content

Commit

Permalink
V2024.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Jan 8, 2024
1 parent 5082ac5 commit 2a5d747
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/aura.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ Path: `Nickvision::Aura::Aura`
- The AppInfo object for the application

### Methods
- ```cpp
~Aura()
```
- Destructs an Aura
- Note: This also called curl_global_clean().
- ```cpp
T& getConfig<T>(const std::string& key)
```
Expand Down
2 changes: 1 addition & 1 deletion src/aura/aura.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Nickvision::Aura
}
}

Aura::~Aura()
Aura::~Aura() noexcept
{
curl_global_cleanup();
}
Expand Down

0 comments on commit 2a5d747

Please sign in to comment.