Kaydet (Commit) 5e2284de authored tarafından Michael Stahl's avatar Michael Stahl

desktop: fix undefined CrashReporter::AddKeyValue on MSVC

Change-Id: Ie10b4849957734c2548c73dff8485cc673769e13
üst f7a6da20
......@@ -28,7 +28,12 @@
* * AdapterDeviceId
*
*/
class CRASHREPORT_DLLPUBLIC CrashReporter
class
#if HAVE_FEATURE_BREAKPAD
// MSVC 2013 has undefined symbols for inline functions if it's exported
CRASHREPORT_DLLPUBLIC
#endif
/*class*/ CrashReporter
{
public:
static void AddKeyValue(const OUString& rKey, const OUString& rValue);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment