[llvm-bugs] [Bug 27963] New: static variables are not listed with "(lldb) target variable" when initialized in-place
    via llvm-bugs 
    llvm-bugs at lists.llvm.org
       
    Wed Jun  1 05:55:45 PDT 2016
    
    
  
https://llvm.org/bugs/show_bug.cgi?id=27963
            Bug ID: 27963
           Summary: static variables are not listed with "(lldb) target
                    variable" when initialized in-place
           Product: lldb
           Version: 3.8
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: All Bugs
          Assignee: lldb-dev at lists.llvm.org
          Reporter: manstetten at iue.tuwien.ac.at
                CC: llvm-bugs at lists.llvm.org
    Classification: Unclassified
"(lldb) target variable" does not list static data members that are initialized
in-place, e.g.:
class A {
    static const int i = 7;
};
When initialized like this:
class A {
    static const int i;
};
const int A::i = 7;
, it works fine.
-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20160601/2b0ea586/attachment.html>
    
    
More information about the llvm-bugs
mailing list