4
0
mirror of https://github.com/QuasarApp/LIEF.git synced 2025-05-12 11:29:33 +00:00
This commit is contained in:
Romain Thomas 2020-12-24 20:51:46 +01:00
parent d35ac6c48f
commit 933b9492a0
2 changed files with 2 additions and 1 deletions
doc/sphinx
src/ELF

@ -182,7 +182,7 @@ else:
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_last_updated_fmt = '%m/%d/%Y, %H:%M:%S'
html_last_updated_fmt = '%d/%m/%Y, %H:%M:%S'
html_logo = '_static/logo_blue.png'
html_favicon = '_static/favicon.ico'
html_static_path = ['_static']

@ -48,6 +48,7 @@ Note& Note::operator=(Note other) {
}
Note::Note(const Note& other):
Object(other),
binary_(other.binary_),
name_(other.name_),
type_(other.type_),