summaryrefslogtreecommitdiff
path: root/platform/linux/src/headless_display_glx.cpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-10 18:51:04 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2017-05-12 18:07:36 +0300
commitfa36110dfbdc05b511a3f85461eaca4a29e446a1 (patch)
tree284bd9a9eca229c026e531bbce1a9f0dd6ba089d /platform/linux/src/headless_display_glx.cpp
parentf709d7b0557d3e6d652d9b7d8380f1380962a327 (diff)
downloadqtlocation-mapboxgl-fa36110dfbdc05b511a3f85461eaca4a29e446a1.tar.gz
[tidy] modernize-use-auto
Diffstat (limited to 'platform/linux/src/headless_display_glx.cpp')
-rw-r--r--platform/linux/src/headless_display_glx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linux/src/headless_display_glx.cpp b/platform/linux/src/headless_display_glx.cpp
index 4275ebb646..963a5234cb 100644
--- a/platform/linux/src/headless_display_glx.cpp
+++ b/platform/linux/src/headless_display_glx.cpp
@@ -27,7 +27,7 @@ HeadlessDisplay::Impl::Impl() {
throw std::runtime_error("Failed to open X display.");
}
- const char *extensions = reinterpret_cast<const char *>(glXQueryServerString(xDisplay, DefaultScreen(xDisplay), GLX_EXTENSIONS));
+ const auto *extensions = reinterpret_cast<const char *>(glXQueryServerString(xDisplay, DefaultScreen(xDisplay), GLX_EXTENSIONS));
if (!extensions) {
throw std::runtime_error("Cannot read GLX extensions.");
}