Update to experimental state in master :D #2
Reference in New Issue
Block a user
No description provided.
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
LGTM :P
Travis fails but just does not support C++14 .. lets fix that later :D
totally not talking to myself
Can we use this from travis: https://docs.travis-ci.com/user/installing-dependencies/#adding-apt-packages
@ -15,0 +17,4 @@
OsciWidget::OsciWidget(QWidget *parent)
: QOpenGLWidget{parent}
, m_bufferOffset{m_buffer.begin()}
, m_lastBufferUpdate{0}
anonymous namespace?
@ -15,0 +17,4 @@
OsciWidget::OsciWidget(QWidget *parent)
: QOpenGLWidget{parent}
, m_bufferOffset{m_buffer.begin()}
, m_lastBufferUpdate{0}
Why? It is in its own compilation unit anyways. Is there a way this can be visible somewhere else? I use anonymous namespaces only for files that will be included, but I do not know best practices for this
@ -15,0 +17,4 @@
OsciWidget::OsciWidget(QWidget *parent)
: QOpenGLWidget{parent}
, m_bufferOffset{m_buffer.begin()}
, m_lastBufferUpdate{0}
Well you are right of course .. you could link against it if you reuse the name :)